DADiSP Worksheet Functions > Function Categories > Statistics and Calculus > ROWMAX

 

ROWMAX

Purpose:

Produces a column of the maximum of each row of the input table.

Syntax:

ROWMAX(a)

a

-

A series or table.

Returns:

A single column series with the same number of rows as the input table.

Example:

a = {{2,  4,  6},

     {8, 10, 12}} 

 

b = rowmax(a) 

 

b == {6, 12} 

Remarks:

ROWMAX uses ROWREDUCE to find the row maxima.

See Also:

COLMAX

MAX

ROW

ROWLEN

ROWMEAN

ROWMIN

ROWREDUCE

ROWSTDEV

ROWSUM

TRANSPOSE