IEuclideanRingOperations<T>.Remainder Method

Returns the remainder when dividing one value by another.

Definition

Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
T Remainder(
	T a,
	T b
)

Parameters

a  T
The dividend.
b  T
The divisor.

Return Value

T
The remainder after dividing a by b. The remainder has the same sign as the dividend, a.

See Also