RED_MAX_ABS

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

Usage

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

Examples

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

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

 RED_MAX_ABS
-------------
 9
(1 row)

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