DEGREES_ELEMENTS - elementwise radians to degrees function (entire matrix operation)
This procedure implements an elementwise radians to degrees conversion.
Usage
The DEGREES_ELEMENTS stored procedure has the following syntax:
- DEGREES_ELEMENTS(matrixIn,matrixOut)
- Parameters
- matrixIn
- The name of the input matrix.
- matrixOut
- The name of the output matrix.
Examples
CALL nzm..SHAPE('0, 0.78539816339745,
1.5707963267949, 3.1415926535898, 4.7123889803847,
6.2831853071796',2,3,'A');
CALL nzm..DEGREES_ELEMENTS('A', 'B');
CALL nzm..PRINT ('B');
CALL nzm..DELETE_MATRIX('A' );
CALL nzm..DELETE_MATRIX('B' );
SHAPE
-------
t
(1 row)
DEGREES_ELEMENTS
------------------
t
(1 row)
PRINT
-----------------------------------------
-- matrix: B --
0, 45, 90
180, 270, 360
(1 row)
DELETE_MATRIX
---------------
t
(1 row)
DELETE_MATRIX
---------------
t
(1 row)