Math.IEEEremainder(Double, Double) Method

Definition

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

Java documentation for java.lang.Math.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.

Applies to