home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / COMPLEX.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-01-19  |  285 b   |  15 lines

  1.  
  2. #include <math.h>
  3.  
  4. struct complext{
  5.  float x,y;
  6.  };
  7.  
  8. float CMag(struct complext *CNum1);
  9.  
  10. void ComplexMath(struct complext c1,char op,struct complext c2,struct complext *result);
  11.  
  12. void CExp(struct complext c1,struct complext *c2);
  13.  
  14. float CAngle(struct complext CNum1);
  15.