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



alpha
A double by which to multiply the current matrix.
Multiplies the current matrix by a scalar value and returns the result.

Syntax

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

Parameters

alpha
A double by which to multiply the current matrix.

Return Value

A Matrix object that represents the result of the matrix-scalar multiplication.

Requirements

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

See Also

.NET Matrix Library