Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Computes the same remainder as _X REM _Y. Also calculates the lower 23 bits of the integral quotient _X/_Y, and gives that value the same sign as _X/_Y. It stores this
inline float remquo(
float _X,
float _Y,
_Out_ int * _Quo
) restrict(amp);
inline double remquo(
double _X,
double _Y,
_Out_ int * _Quo
) restrict(amp);
Parameters
_X
Floating-point value_Y
Floating-point value_Quo
Pointer to an integer value
Return Value
Returns the remainder
Requirements
Header: amp_math.h
Namespace: Concurrency::precise_math