MATLAB: Easy question from a newbie

matrix

This should be a really easy question for some of you…I think.
Is there a function to specifically call out the number of rows in matrix? Length usually works but it takes the "longest side" so if you have more rows than columns, it counts the columns. I know size returns both the # of rows and columns, but I'm tweaking somebody else's more complicated code, so I just need a function to replace length where its reading # of columns instead of # of rows.
Thanks

Best Answer

size(A,1) % number of rows
size(A,2) % number of columns
size(A,3) % number of channels