LOG_ELEMENTS - elementwise log function of base 10
This procedure implements the elementwise log operation of base 10.
Usage
The LOG_ELEMENTS stored procedure has the following syntax:
- LOG_ELEMENTS(matrixIn,matrixOut)
- Parameters
- matrixIn
- The name of the input matrix.
- matrixOut
- The name of the output matrix.
Examples
CALL nzm..SHAPE('1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16',4,4,'A');
CALL nzm..LOG_ELEMENTS('A','B');
CALL nzm..PRINT('B');
CALL nzm..DELETE_MATRIX('A');
CALL nzm..DELETE_MATRIX('B');
SHAPE
-------
t
(1 row)
LOG_ELEMENTS
--------------
t
(1 row)
PRINT
-----------------------------------------------------------------------------------------------------
-- matrix: B --
0, 0.30102999566398, 0.47712125471966, 0.60205999132796
0.69897000433602, 0.77815125038364, 0.84509804001426, 0.90308998699194
0.95424250943932, 1, 1.0413926851582, 1.0791812460476
1.1139433523068, 1.1461280356782, 1.1760912590557,
1.2041199826559
(1 row)
DELETE_MATRIX
---------------
t
(1 row)
DELETE_MATRIX
---------------
t
(1 row)