Click or drag to resize

DenseMatrix.Modulus Operator

Multiplies a Matrix by a constant and returns the result.

Namespace: Altaxo.Calc.LinearAlgebra.Single
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static DenseMatrix operator %(
	DenseMatrix leftSide,
	float rightSide
)

Parameters

leftSide  DenseMatrix
The matrix to multiply.
rightSide  Single
The constant to multiply the matrix by.

Return Value

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