Hacker News new | ask | show | jobs
by f1shy 838 days ago
Multiplication is pretty much needed in cordic! And is far from obsolete! It works perfectly fine, and dont have any of the problems said in the article.
2 comments

CORDIC doesn't use multipliers. That's the whole appeal for low performance hardware since it's all shifts and adds. It can still be useful on more capable platforms when you want sin and cos in one operation since there is no extra cost.
It uses multiplication by powers of two, which is a floating-point bit shift.