Matrix

The interface represents matrices in form of two levels of nested Array elements. The outer array size is equal to the number of columns in the matrix. Each nested Array represents a matrix column and it’s number of elements is equal to the matrix’ row count.

Formats

Array/Matrix

Node representing a 2x3 matrix (2 rows, 3 columns)

0 (Array/Vector) 1 (Array/Vector) 2 (Array/Vector)

The 2 element vector containing the first column. The 2 element vector containing the second column. The 2 element vector containing the third column.