StrictMath.IEEEremainder(Double, Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.
[Android.Runtime.Register("IEEEremainder", "(DD)D", "")]
public static double IEEEremainder (double f1, double f2);
[<Android.Runtime.Register("IEEEremainder", "(DD)D", "")>]
static member IEEEremainder : double * double -> double
Parameters
- f1
- Double
the dividend.
- f2
- Double
the divisor.
Returns
the remainder when f1
is divided by
f2
.
- Attributes
Remarks
Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard. The remainder value is mathematically equal to f1 - f2
× n, where n is the mathematical integer closest to the exact mathematical value of the quotient f1/f2
, and if two mathematical integers are equally close to f1/f2
, then n is the integer that is even. If the remainder is zero, its sign is the same as the sign of the first argument. Special cases: <ul><li>If either argument is NaN, or the first argument is infinite, or the second argument is positive zero or negative zero, then the result is NaN. <li>If the first argument is finite and the second argument is infinite, then the result is the same as the first argument.</ul>
Java documentation for java.lang.StrictMath.IEEEremainder(double, double)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.