IMathTNumericIEEERemainder Method
Returns the remainder resulting from the division of a specified number by another specified number.
Namespace: Jodosoft.NumericsAssembly: Jodosoft.Numerics (in Jodosoft.Numerics.dll) Version: 2.0
TNumeric IEEERemainder(
TNumeric x,
TNumeric y
)
Function IEEERemainder (
x As TNumeric,
y As TNumeric
) As TNumeric
TNumeric IEEERemainder(
TNumeric x,
TNumeric y
)
abstract IEEERemainder :
x : 'TNumeric *
y : 'TNumeric -> 'TNumeric
- x TNumeric
- A dividend.
- y TNumeric
- A divisor.
TNumeric
A number equal to
x - (
y Q),
where Q is the quotient of
x /
y rounded to the nearest integer
(if
x /
y falls halfway between two integers, the even integer is returned).
This method may return
NaN or Infinity.
If
NaN or Infinity cannot be represented by
TNumeric,
then this method may throw an
ArithmeticException.