EXP_ELEMENTS - elementweise EXP-Funktion (gesamte Matrixoperation)

Diese Prozedur implementiert die elementweise Exponentialwertberechnung für die angegebene Matrix.

Verwendung

Die gespeicherte Prozedur EXP_ELEMENTS hat die folgende Syntax:
EXP_ELEMENTS matrixIn,matrixOut )
Parameter
matrixIn
Der Name der Eingabematrix.
Typ: NVARCHAR(ANY)
matrixOut
Der Name der Ausgabematrix.
Typ: NVARCHAR(ANY)
Rückgabe
BOOLEAN TRUE, wenn erfolgreich.

Details zu

Dieses Verfahren gilt für die gesamte Eingabematrix.

Beispiele

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)