modf 函数
拆分成小数 _X 和整数部分。
inline float modf(
float _X,
_Out_ float * _Iptr
) restrict(amp);
inline double modf(
double _X,
_Out_ double * _Iptr
) restrict(amp);
参数
_X
浮点值_Iptr
返回值
返回 _X 的有符号的小数部分
要求
标题: amp_math.h
命名空间: Concurrency::precise_math