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


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

Syntax

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

Parameters

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

Return Value

A Matrix 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