-
float amd_fmodf(float x, float y)#
Computes the remainder of the division operation x/y (single-precision).
- Parameters:
x – Numerator.
y – Denominator.
- Returns:
Remainder of x divided by y.
-
double amd_fmod(double x, double y)#
Computes the remainder of the division operation x/y (double-precision).
- Parameters:
x – Numerator.
y – Denominator.
- Returns:
Remainder of x divided by y.