.NET Matrix Library
Multiply(Matrix,Double) Method
See Also  Send Feedback



A
A Matrix object that represents the matrix to be multiplied.
alpha
A double value that represents the scalar..
Returns the product of a scalar and a matrix.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Multiply( _
   ByVal A As Matrix, _
   ByVal alpha As Double _
) As Matrix
Visual Basic (Usage)Copy Code
Dim A As Matrix
Dim alpha As Double
Dim value As Matrix
 
value = Matrix.Multiply(A, alpha)
C# 
public static Matrix Multiply( 
   Matrix A,
   double alpha
)
C++/CLI 
public:
static Matrix^ Multiply( 
   Matrix^ A,
   double alpha
) 

Parameters

A
A Matrix object that represents the matrix to be multiplied.
alpha
A double value that represents the scalar..

Return Value

A Matrix object that represents the matrix - scalar product.

Requirements

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

See Also

.NET Matrix Library