zhemm - Hermitian Matrix-Matrix Product (CDB) VI

Owning Palette: Basic Linear Algebra Subroutines VIs

Requires: Full Development System

Calculates the product of a Hermitian matrix and another matrix.

Details  

 Add to the block diagram  Find on the palette
side specifies the position of A in the product calculation. The default is Left.

0Right—The VI calculates the result of alpha*B*A + beta*C.
1Left (default)—The VI calculates the result of alpha*A*B + beta*C.
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.

2Lower Triangular—The VI uses only the lower triangular component of the input matrix for the calculation.
3Upper Triangular (default)—The VI uses only the upper triangular component of the input matrix 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.

zhemm - Hermitian Matrix-Matrix Product (CDB) Details

Refer to the BLAS (Basic Linear Algebra Subprograms) website at netlib.org for more information on BLAS functions.