.NET Matrix Library
Division(Matrix,Matrix) Operator
See Also  Send Feedback


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

Syntax

Visual Basic (Declaration) 
Overloads Public Operator /( _
   ByVal A As Matrix, _
   ByVal B As Matrix _
) As Matrix
C# 
public Matrix operator /( 
   Matrix A,
   Matrix B
)
C++/CLI 
public:
Matrix^ operator /( 
   Matrix^ A,
   Matrix^ B
)

Parameters

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

Return Value

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

Exceptions

ExceptionDescription
InvalidSizeExceptionA, B do not have the same number of rows.

Remarks

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