EXP_ELEMENTS - elementwise EXP function (entire matrix operation)

This procedure implements the element wise exponential value calculation for the specified matrix.

Usage

The EXP_ELEMENTS stored procedure has the following syntax:
EXP_ELEMENTS(matrixIn,matrixOut)
Parameters
matrixIn
The name of the input matrix.
Type: NVARCHAR(ANY)
matrixOut
The name of the output matrix.
Type: NVARCHAR(ANY)
Returns
BOOLEAN TRUE, if successful.

Details

This procedure applies to the entire input matrix.

Examples

CALL nzm..SHAPE('1,2,3,4,5,0,6,7,8', 3, 3, 'A');
CALL nzm..EXP_ELEMENTS('A', 'B');
CALL nzm..PRINT('B');
CALL nzm..DELETE_MATRIX('A');
CALL nzm..DELETE_MATRIX('B');

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

 EXP_ELEMENTS
--------------
 t
(1 row)

                                   PRINT
---------------------------------------------------------------------------
 -- matrix: B --
 2.718281828459, 7.3890560989307, 20.085536923188
 54.598150033144, 148.41315910258, 1
 403.42879349274, 1096.6331584285, 2980.9579870417
(1 row)

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

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