Click or drag to resize

MatrixTModulus(MatrixT, T) Operator

Computes the pointwise remainder (% operator), where the result has the sign of the dividend, of each element of the matrix of the given divisor.

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

Parameters

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

Return Value

MatrixT
The result of the calculation
Exceptions
ExceptionCondition
ArgumentNullExceptionIf dividend is .
See Also