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



A
A CMatrix instance on the left side of the division operator.
B
A CMatrix instance on the right side of the division operator.
Performs matrix right division

Syntax

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

Parameters

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

Return Value

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

Exceptions

ExceptionDescription
SizeMismatchExceptionA, B do not have the same number of columns.

Remarks

The Divide method is an alias for the Division operator.

X = B / A then X is the solution of the equation X*A = B.

Requirements

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

See Also

.NET Matrix Library