码迷,mamicode.com
首页 > 其他好文 > 详细

高效求解平方根的倒数的函数实现

时间:2014-10-08 04:01:54      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:blog   io   sp   div   c   on   log   r   amp   

/*
** float q_rsqrt( float number )
*/
float q_rsqrt( float number )
{
	long i;
	float x2, y;
	const float threehalfs = 1.5F;

	x2 = number * 0.5F;
	y  = number;
	i  = * ( long * ) &y;						// evil floating point bit level hacking
	i  = 0x5f3759df - ( i >> 1 );               // what the fuck?
	y  = * ( float * ) &i;
	y  = y * ( threehalfs - ( x2 * y * y ) );   // 1st iteration
//	y  = y * ( threehalfs - ( x2 * y * y ) );   // 2nd iteration, this can be removed

#ifdef __linux__
	assert( !isnan(y) ); // bk010122 - FPE?
#endif
	return y;
}

 

高效求解平方根的倒数的函数实现

标签:blog   io   sp   div   c   on   log   r   amp   

原文地址:http://www.cnblogs.com/jealdean/p/4010357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!