Click or drag to resize

MatrixTModulus(MatrixT, MatrixT) Operator

Computes the pointwise remainder (% operator), where the result has the sign of the dividend, of each element of two matrices.

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> dividend,
	Matrix<T> divisor
)

Parameters

dividend  MatrixT
The matrix whose elements we want to compute the remainder of.
divisor  MatrixT
The divisor to use.

Return Value

MatrixT

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Matrix`1.op_Modulus(Altaxo.Calc.LinearAlgebra.Matrix{`0},Altaxo.Calc.LinearAlgebra.Matrix{`0})"]

Exceptions
ExceptionCondition
ArgumentExceptionIf dividend and divisor are not the same size.
ArgumentNullExceptionIf dividend is .
See Also