Click or drag to resize

MatrixTMultiply(T, MatrixT) Operator

Multiplies a Matrix by a constant and returns the result.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Matrix<T> operator *(
	T leftSide,
	Matrix<T> rightSide
)

Parameters

leftSide  T
The matrix to multiply.
rightSide  MatrixT
The constant to multiply the matrix by.

Return Value

MatrixT
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf rightSide is .
See Also