Basic Linear Algebra Subroutines VIs
- Updated2023-02-21
- 1 minute(s) read
Owning Palette: Linear Algebra VIs
Requires: Multicore Analysis and Sparse Matrix Toolkit. This topic might not match its corresponding palette in LabVIEW depending on your operating system, licensed product(s), and target.
Use the Basic Linear Algebra Subroutines VIs to perform basic scalar-vector, vector-vector, matrix-vector, and matrix-matrix operations.
Refer to BLAS (Basic Linear Algebra Subprograms) for more information on the BLAS functions.
| Palette Object | Description |
|---|---|
| gemm - General Matrix-Matrix Product | Calculates the product of two general matrices. |
| gemv - General Matrix-Vector Product | Calculates the product of a general matrix and a vector. |
| hemm - Hermitian Matrix-Matrix Product | Calculates the product of a Hermitian matrix and another matrix. |
| hemv - Hermitian Matrix-Vector Product | Calculates the product of a Hermitian matrix and a vector. |
| symm - Symmetric Matrix-Matrix Product | Calculates the product of a symmetric matrix and another matrix. |
| symv - Symmetric Matrix-Vector Product | Calculates the product of a symmetric matrix and a vector. |
| trmm - Triangular Matrix-Matrix Product | Calculates the product of a triangular matrix and another matrix. |
| trmv - Triangular Matrix-Vector Product | Calculates the product of a triangular matrix and a vector. |