KPG1_TRSPx

Transposes a two-dimensional array

Description:

This routine creates a new two-dimensional array containing a transposed copy the supplied array.

Invocation

CALL KPG1_TRSPx( M, N, IN, OUT, STATUS )

Arguments

M = INTEGER (Given)
Number of columns in the input array and the number of lines in the output array.
N = INTEGER (Given)
Number of lines in the input array and the number of columns in the output array.
IN( M, N ) = ? (Given)
The input array to be transposed.
OUT( N, M ) = ? (Returned)
The transposed array.
STATUS = INTEGER (Given)
The global status.

Notes: