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.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
MatrixTThe result of the calculation
Exceptions See Also