home *** CD-ROM | disk | FTP | other *** search
-
- #include <math.h>
-
- struct complext{
- float x,y;
- };
-
- float CMag(struct complext *CNum1);
-
- void ComplexMath(struct complext c1,char op,struct complext c2,struct complext *result);
-
- void CExp(struct complext c1,struct complext *c2);
-
- float CAngle(struct complext CNum1);