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



alpha
A complex on the left side of the division operator.
A
A CMatrix instance on the right side of the division operator.
Performs scalar-matrix division.

Syntax

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

Parameters

alpha
A complex on the left side of the division operator.
A
A CMatrix instance on the right side of the division operator.

Return Value

A CMatrix object that represents the result of the scalar-matrix division.

Requirements

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

See Also

.NET Matrix Library