Udostępnij za pośrednictwem


MathF.IEEERemainder(Single, Single) Metoda

Definicja

Zwraca resztę wynikającą z dzielenia określonej liczby przez inną określoną liczbę.

public:
 static float IEEERemainder(float x, float y);
public static float IEEERemainder (float x, float y);
static member IEEERemainder : single * single -> single
Public Shared Function IEEERemainder (x As Single, y As Single) As Single

Parametry

x
Single

Licznik

y
Single

Mianownik

Zwraca

Wynik dzielenia x przez y

Uwagi

Ta operacja jest zgodna z operacją pozostałą zdefiniowaną w sekcji 5.1 ANSI/IEEE Std 754-1985; Standard IEEE dla arytmetyki binarnej Floating-Point; Institute of Electrical and Electronics Engineers, Inc; 1985.

Metoda IEEERemainder nie jest taka sama jak operator remainder. Mimo że obie zwracają resztę po dzieleniu, używane formuły są różne. Formuła metody IEEERemainder to:

IEEERemainder = dividend - (divisor * MathF.Round(dividend / divisor))

Natomiast formuła dla operatora reszty to:

Remainder = (MathF.Abs(dividend) - (MathF.Abs(divisor) *
            (MathF.Floor(MathF.Abs(dividend) / MathF.Abs(divisor))))) *
            MathF.Sign(dividend)

Dotyczy