Multiplies a matrix by a scalar.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> operator *(
T factor,
Matrix<T> matrix
)
Public Shared Operator * (
factor As T,
matrix As Matrix(Of T)
) As Matrix(Of T)
public:
static Matrix<T>^ operator *(
T factor,
Matrix<T>^ matrix
)
static let inline (*)
factor : 'T *
matrix : Matrix<'T> : Matrix<'T>
Parameters
- factor
- Type: T
A number. - matrix
- Type: Extreme.MathematicsMatrixT
A matrix.
Return Value
Type:
MatrixTA matrix whose elements are
the corresponding elements of
matrix
multiplied by
factor.
Reference