Click here to Skip to main content
15,891,943 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is complex.h a windows header? I'm trying to compile code and it says that the header is missing. Where can I download complex.h?
Thanks
Posted
Updated 6-Jul-15 19:54pm
v2
Comments
PIEBALDconsult 7-Jul-15 1:55am    
Downloading a header file is unlikely to help if you don't have the library (DLL, etc.) with the executable.

1 solution

Since you're using C++ rather than C (I assume because of the question tag), you can include complex instead of the C header complex.h.

Try changing
C++
#include <complex.h>

to
#include <complex>

Hope this helps,
Fredrik
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900