MATLAB: How to count row and column of a matrix

matrixsize;

if i have a big matrix and i don't know its size, how to find out its size? and how to save it as variable?

Best Answer

[m,n] = size(A)