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


x
A Vector instance on the left side of the multiplication operator.
A
A Matrix instance on the right side of the multiplication operator.
Left multiplies a matrix with a vector.

Syntax

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

Parameters

x
A Vector instance on the left side of the multiplication operator.
A
A Matrix instance on the right side of the multiplication operator.

Requirements

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

See Also

.NET Matrix Library