BigFloat.Ieee754Remainder Method

Computes the remainder of two values as specified by IEEE 754.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigFloat Ieee754Remainder(
	BigFloat left,
	BigFloat right
)

Parameters

left  BigFloat
The value which right divides.
right  BigFloat
The value which divides left.

Return Value

BigFloat
The remainder of left divided by right as specified by IEEE 754.

Implements

IFloatingPointIeee754<TSelf>.Ieee754Remainder(TSelf, TSelf)

See Also