Matrix Nodes

Manipulate the elements, diagonals, and submatrices of a matrix. Many of these nodes complement existing array operations but offer functionality for math algorithms based on matrices.

Appends elements to a matrix by rows or columns.
Returns the diagonal of matrix beginning at index (row), index (column).
Returns the elements of matrix beginning at index (row), index (col).
Returns a submatrix of matrix starting at (row 1, column 1) and ending at (row N, column N).
Returns the dimensions for the number of rows and columns of matrix.
Resizes matrix with new row and column dimensions based on number of rows and number of columns.
Sets the diagonal of matrix beginning at index (row), index (col).
Sets one or more elements in matrix at the indexes you specify in index (row) and index (col).
Adds a submatrix to matrix starting at (row 1, column 1) and ending at (row N, column N).
Returns the conjugate transpose of matrix.