.NET Matrix Library
Multiply(CMatrix,Complex) Method
See Also  Send Feedback



A
A CMatrix object that represents the matrix to be multiplied.
alpha
A complex structure that represents the scalar..
Returns the product of a scalar and a complex matrix.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Multiply( _
   ByVal A As CMatrix, _
   ByVal alpha As Complex _
) As CMatrix
Visual Basic (Usage)Copy Code
Dim A As CMatrix
Dim alpha As Complex
Dim value As CMatrix
 
value = CMatrix.Multiply(A, alpha)
C# 
public static CMatrix Multiply( 
   CMatrix A,
   Complex alpha
)
C++/CLI 
public:
static CMatrix^ Multiply( 
   CMatrix^ A,
   Complex alpha
) 

Parameters

A
A CMatrix object that represents the matrix to be multiplied.
alpha
A complex structure that represents the scalar..

Return Value

A CMatrix object that represents the matrix - scalar product.

Requirements

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

See Also

.NET Matrix Library