Requires: Base Development System. This topic might not match its corresponding palette in LabVIEW depending on your operating system, licensed product(s), and target.
Use the Matrix functions to manipulate the elements, diagonals, and submatrices of a matrix or 2D numeric array. Many of these functions complement existing array operations but offer functionality for math algorithms based on matrices.
Palette Object | Description |
---|---|
Build Matrix | Appends elements to a matrix by rows or columns. |
Get Matrix Diagonal | Returns the diagonal of matrix beginning at the index (row, column). |
Get Matrix Elements | Returns the elements of matrix at row and column. |
Get Submatrix | Returns a submatrix of matrix starting at (row 1, column 1) and ending at (row N, column N). |
Matrix Size | Returns the dimensions for the number of rows and columns of matrix. |
Resize Matrix | Resizes matrix with new row and column dimensions based on the number of rows and columns you specify. |
Set Matrix Diagonal | Sets the diagonal of matrix beginning at (row, column). |
Set Matrix Elements | Sets one or more elements in matrix at the indexes you specify in row and column. |
Set Submatrix | Adds a submatrix to matrix starting at (row 1, column 1) and ending at (row N, column N). |
Transpose Matrix | Returns the conjugate transpose of matrix. |