Matrix Transpose
From GECK
(Redirected from Mat T)
A function added by the ShowOff NVSE Plugin version 1.40.
Contents
Description
Returns the Transpose of the given Matrix array.
Syntax
(transpose:array) Matrix_Transpose matrix:array_var
Or:
(transpose:array) Mat_T matrix:array_var
Example
aMatrixA = ar_List (ar_List 3, 4) (ar_List 5, 6) aRes = Matrix_Transpose aMatrixA Matrix_Dump aRes
Prints the transpose of the array like so:
** Dumping Array 4 as Matrix ** 3.0000 5.0000 4.0000 6.0000