Owning Palette: Basic Linear Algebra Subroutines VIs
Requires: Full Development System
Calculates the product of a Hermitian matrix and another matrix.
Add to the block diagram | Find on the palette |
side specifies the position of A in the product calculation. The default is Left.
|
|||||
A is a Hermitian matrix of dimensions greater than or equal to K × K. The VI multiplies the first K rows and K columns of the upper or lower triangular component of A by B. | |||||
B is a complex matrix of dimensions K × N, if you set side to Left, or N × K, if you set side to Right. | |||||
C is a complex matrix of dimensions greater than or equal to B. The default is a matrix the same size as matrix B with all elements equal to 0. | |||||
matrix A type specifies whether the VI uses the upper or lower triangular part of A for the calculation.
|
|||||
alpha is a complex scalar that scales A*B or B*A. The default is 1. | |||||
beta is a complex scalar that scales C. The default is 1. | |||||
zhemm is a complex matrix of the same dimensions as C that returns the result of alpha*A*B + beta*C or alpha*B*A + beta*C. | |||||
error returns any error or warning from the VI. You can wire error to the Error Cluster From Error Code VI to convert the error code or warning into an error cluster. |
Refer to the BLAS (Basic Linear Algebra Subprograms) website at netlib.org for more information on BLAS functions.