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



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

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Divide( _
   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.Divide(A, alpha)
C# 
public static CMatrix Divide( 
   CMatrix A,
   Complex alpha
)
C++/CLI 
public:
static CMatrix^ Divide( 
   CMatrix^ A,
   Complex alpha
) 

Parameters

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

Return Value

A CMatrix object that represents the result of the matrix-scalar 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