From the following page, there is this statement:
C = max(A,[],dim) returns the largest elements along the dimension of A specified by scalar dim. For example, max(A,[],1) produces the maximum values along the first dimension of A.
What do we mean by dimension
here? Say that I have a matrix of size 30x2
, what should I type in terms of the above to find the maximum element for each row?
Thanks.
As your name says, it is simple x)
The first dimension is the
30
in your example, the second2
. That is, the convention is as follows:1st x 2nd x 3rd x 4th x nth
dimension. We also call the 1st dimension aslines
and the second ascolumns
because that is how we are used to draw the matrices. I.e, suppose a matrix in matlab A, with dimensionsnxm
:So using max on first dimension we find the max of all lines for each column, as follows:
And the other case the maximum from all columns for each line:
This can be expanded into the next dimensions using the same logic.