C++ (and maths) : fast approximation of a trigonometric function

后端 未结 7 1293
野的像风
野的像风 2020-12-30 04:52

I know this is a recurring question, but I haven\'t really found a useful answer yet. I\'m basically looking for a fast approximation of the function acos in C+

7条回答
  •  再見小時候
    2020-12-30 05:14

    You can try to create lookup tables, and use them instead of standard c++ functions, and see if you see any performance boost.

提交回复
热议问题