| Visual Basic (Declaration) | |
|---|---|
Public Overloads Shared Function Divide( _ ByVal A As CMatrix, _ ByVal B As CMatrix _ ) As CMatrix | |
| Visual Basic (Usage) | |
|---|---|
Dim A As CMatrix Dim B As CMatrix Dim value As CMatrix value = CMatrix.Divide(A, 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.| Exception | Description |
|---|---|
| SizeMismatchException | A, B do not have the same number of columns. |
The Divide method is an alias for the Division operator.
X = B / A then X is the solution of the equation X*A = B.
Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7