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

 

ROWMIN

Purpose:

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

Syntax:

ROWMIN(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 = rowmin(a) 

 

b == {2, 8} 

Remarks:

ROWMIN uses ROWREDUCE to find the row minima.

See Also:

COLMIN

MIN

ROW

ROWLEN

ROWMAX

ROWMEAN

ROWREDUCE

ROWSTDEV

ROWSUM

TRANSPOSE