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