|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
本帖最后由 cjsb37 于 2013-4-29 09:09 编辑
Please write a fixed point version of the following
function:
float Z(float A, float B, float C)
{
return 1 / sqrt(A*B + C);
}
A, B and C can have values in the range [0.001...1 ].
CPU is 32bit.
Table lookup for Z cannot be used.
|
|