- ←Prev
- KAPLIBS – Internal subroutines used within the KAPPA package.
- Next→
- TOC ↑
Description:
The
routine enters values into a specified row of a two-dimensional array, the values being
supplied in a separate one-dimensional array whose size matches the row size.
Invocation
CALL KPG1_PROWx( EL, ROW, IROW, ARRAY, STATUS )
Arguments
EL = INTEGER
(Given)
Number of elements in a single row of the two-dimensional array.
ROW( EL ) = ?
(Given)
Array of values to be inserted into the row.
IROW = INTEGER (Given)
The row
number in the two-dimensional array into which the values are to be inserted.
ARRAY( EL,
) = ?
(Given and Returned)
The two-dimensional array which is to recieve the new values. The declared
second dimension size of this array must not be fewer than IROW. The values in other rows of this
array are not altered.
STATUS = INTEGER (Given and Returned)
The global status.
Notes:
-
There is a routine for each numeric data type. Replace "
x"
in the routine name by B, UB, W, UW, I, R
or D as appropriate. The data type of the ROW and ARRAY arrays should match the routine being
used.
- ←Prev
- KAPLIBS – Internal subroutines used within the KAPPA package.
- Next→
- TOC ↑