| 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.3261.0 (4.8.3261.0)
 Syntax
Syntaxpublic 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
Exceptions See Also
See Also