Forum Discussion
Altera_Forum
Honored Contributor
15 years agoHow can i use CORDIC ?
Hello i am trying to use the cordic core { http://opencores.org/project,cordic } with no sucess. Say i have a complex number of 4 + 5i. I have inserted 1000 as the Xi input and 1001 as the Yi...
Altera_Forum
Honored Contributor
14 years agoWhat kind of problems exactly? And just a remark:
--- Quote Start --- use ieee.numeric_std.all; use ieee.std_logic_signed.all; --- Quote End --- This is a bad idea, mixing numeric_std with one of the non standard std_logic_(un)signed gives weird results and problems. You'd better only include the numeric_std library and use the unsigned/signed types each time you need to do an arithmetic operation.