Matrix Transpose

From GECK
Jump to: navigation, search


A function added by the ShowOff NVSE Plugin version 1.40.

Description

Returns the Transpose of the given Matrix array.

Syntax

[help]
(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

See Also