Produces a row of the maximum values of each column of the input table.
COLMAX(a)
a |
- |
A series or table. |
A one-row table with the same number of columns as the input table.
colmax(ravel({2, 4, 6}, {8, 10, 12}))
returns {{6, 12}}
Use COLMAXIDX to find the indices for each column of an array.