Question: Please use MatLab 5) Write a function CheckMatrix that will check whether an input argument is a scalar, a onedimensional vector, or a two-dimensional matrix.

Please use MatLab  Please use MatLab 5) Write a function CheckMatrix that will check

5) Write a function CheckMatrix that will check whether an input argument is a scalar, a onedimensional vector, or a two-dimensional matrix. This function receives a variable as the only input argument, and returns the variable type as a character vector (a string). Your function should also check if the input is empty. If that's the case, the function should output 'empty'. Hint: consider using the size() function. To test your function, try the following examples: > type = CheckMatrix (4.0) type = > type = CheckMatrix (1:10) type = 'vector' > type = CheckMatrix (rand (3)) type = 'matrix' > type = CheckMatrix ([]) type = 'empty

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!