RED_MIN

This procedure implements computation of the minimum value from a matrix reduction.

Usage

The RED_MIN stored procedure has the following syntax:
RED_MON(matrixName)
Parameters
matrixName
The name of the matrix.
Type: NVARCHAR(ANY)
Returns
DOUBLE The minimum value in the matrix.

Examples

CALL nzm..shape('6,-2,9, 4,1,6',2,3,'A');
SELECT nzm..red_min('A');
CALL nzm..delete_matrix('A');

 SHAPE
-------
 t
(1 row)

 RED_MIN
----------
 2
(1 row)

 DELETE_MATRIX
---------------
 t
(1 row)