SparseSquareMatrixMultiply Operator (Double, SparseSquareMatrix) |
Multiplies a sparse matrix by a real scalar.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static SparseSquareMatrix operator *(
double alpha,
SparseSquareMatrix A
)
Public Shared Operator * (
alpha As Double,
A As SparseSquareMatrix
) As SparseSquareMatrix
public:
static SparseSquareMatrix^ operator *(
double alpha,
SparseSquareMatrix^ A
)
static let inline (*)
alpha : float *
A : SparseSquareMatrix : SparseSquareMatrix
Parameters
- alpha
- Type: SystemDouble
The scalar value. - A
- Type: Meta.Numerics.MatricesSparseSquareMatrix
The sparse matrix.
Return Value
Type:
SparseSquareMatrixThe product sparse matrix.
See Also