Click or drag to resize

MatrixTModulus(T, MatrixT) Operator

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

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

Parameters

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

Return Value

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