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


A
A Matrix instance on the left side of the multiplication operator.
alpha
A double representing a scalar on the right side of the multiplication operator.
Multiplies a matrix by a scalar.

Syntax

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

Parameters

A
A Matrix instance on the left side of the multiplication operator.
alpha
A double representing a scalar on the right side of the multiplication operator.

Return Value

A Matrix object that represents the product.

Remarks

The matrix-scalar multiplication is a commutative operation.

Requirements

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

See Also

.NET Matrix Library