test if a variable is a matrix
Is there a way to test if a variable is a matrix in Prime 2.0?
I'm writting a function that uses the function vertflip. I want my function to accept a scaler or matrix, but vertflip only accepts matricies. So I'm looking to do something like...
vertflip(if(ismatrix(M), M, [M]))

