MATLAB: Getting the variable size value

size;

I have a variable of size x*y .what matlab command is used to get the x value.

Best Answer

[R,C] = size(A);
doc size