RED_MIN_ABS

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

Usage

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

Examples

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

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

 RED_MIN_ABS
-------------
 1
(1 row)

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