AnyRectangularMatrixMultiply Operator (Double, AnyRectangularMatrix) |
Multiplies any 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,
AnyRectangularMatrix A
)
Public Shared Operator * (
alpha As Double,
A As AnyRectangularMatrix
) As RectangularMatrix
public:
static RectangularMatrix^ operator *(
double alpha,
AnyRectangularMatrix^ A
)
static let inline (*)
alpha : float *
A : AnyRectangularMatrix : RectangularMatrix
Parameters
- alpha
- Type: SystemDouble
The constant. - A
- Type: Meta.Numerics.MatricesAnyRectangularMatrix
The matrix.
Return Value
Type:
RectangularMatrixThe product matrix.
See Also