.NET Matrix Library
Multiply Method
See Also  Send Feedback



Multiplies matrices. Multiplies two complex matrices.

Overload List

OverloadDescription
Multiply(Complex,TransposeMode,CMatrix,TransposeMode,CMatrix,Complex,CMatrix)

Computes a scalar-matrix-matrix product and adds the result to a scalar-matrix product. The operation is defined as:

C= alpha * op(A) * op(B) + beta *C

 
Multiply(Complex,TransposeMode,CMatrix,CVector,Complex,CVector)

Computes a scalar-matrix-vector product and adds the result to a scalar-vector product. The operation is defined as:

y= alpha * op(A) *x + beta *y

 
Multiply(Complex,CMatrix,CMatrix,Complex,CMatrix)Computes a scalar-matrix-matrix product and adds the result to a scalar-matrix product.  
Multiply(CMatrix,Matrix)Multiplies a complex matrix by a real matrix.  
Multiply(CMatrix,CMatrix)Multiplies two complex matrices.  
Multiply(CVector,CMatrix)Left multiplies a matrix with a vector.  
Multiply(CMatrix,CVector)Multiplies a matrix with a complex vector.  
Multiply(CMatrix,Complex)Returns the product of a scalar and a complex matrix.  

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library