Click or drag to resize

MatrixTMultiply(MatrixT, T) 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 *(
	Matrix<T> leftSide,
	T rightSide
)

Parameters

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

Return Value

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