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.
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
Get step-by-step solutions from verified subject matter experts
