Calculates the product of a Hermitian matrix and another matrix.


icon

Inputs/Outputs

  • ci32.png side

    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.
  • c2dcdb.png A

    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.

  • c2dcdb.png 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.

  • c2dcdb.png C

    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.

  • ci32.png matrix A type

    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.
  • ccdb.png alpha

    alpha is a complex scalar that scales A*B or B*A. The default is 1.

  • ccdb.png beta

    beta is a complex scalar that scales C. The default is 1.

  • i2dcdb.png zhemm

    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.

  • ii32.png error

    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.