RectangularMatrixMultiply Operator (Double, RectangularMatrix) |
Multiply a real, rectangular matrix by a real constant.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static RectangularMatrix operator *(
double alpha,
RectangularMatrix A
)
Public Shared Operator * (
alpha As Double,
A As RectangularMatrix
) As RectangularMatrix
public:
static RectangularMatrix^ operator *(
double alpha,
RectangularMatrix^ A
)
static let inline (*)
alpha : float *
A : RectangularMatrix : RectangularMatrix
Parameters
- alpha
- Type: SystemDouble
The constant. - A
- Type: Meta.Numerics.MatricesRectangularMatrix
The matrix.
Return Value
Type:
RectangularMatrixThe product αA.
Exceptions See Also