home *** CD-ROM | disk | FTP | other *** search
- #include <math.h>
- #include "miscio.h"
-
- struct complext{
- float x,y;
-
- };
-
- float CMag(struct complext *CNum1)
- {
- float _fret;
-
- _fret = sqrt( (*CNum1).x * (*CNum1).x +
- (*CNum1).y * (*CNum1).y );
- return(_fret);
- }
-
-
- void ComplexMath(struct complext c1,char op,
- struct complext c2,struct complext *result)
- {
- struct complext temp1;
- struct complext temp2;
- float tempr;
-
- switch ( op ) {
- case '+':
- {
-
- (*result).x = c1.x + c2.x;
- (*result).y = c1.y + c2.y;
-
- }
- break;
- case '-':
- {
- (*result).x = c1.x - c2.x;
- (*result).y = c1.y - c2.y;
- }
- break;
- case '*':
- {
- (*result).x = c1.x * c2.x - c1.y * c2.y;
- (*result).y = c1.x * c2.y + c1.y * c2.x;
- }
- break;
- case '/':
- {
- (*result).x = (c1.x * c2.x + c1.y * c2.y) / ((c2.x * c2.x) + (c2.y * c2.y));
- (*result).y = (c1.y * c2.x - c1.x * c2.y) / ((c2.x * c2.x) + (c2.y * c2.y));
- }
- break;
- case 'i':
- {
- tempr = CMag(&c1);
- (*result).y = -(c1.y / tempr);
- (*result).x = c1.x / tempr;
- }
- break;
- }
- }
-
- void CExp(struct complext c1,struct complext *c2)
- {
-
- (*c2).x = exp(c1.x) * cos(c1.y);
- (*c2).y = exp(c1.x) * sin(c1.y);
- }
-
-
- float CAngle(struct complext CNum1)
- {
- float _fret;
- float temp;
- # define NearZero 1.0e-20
-
- {
- if ( fabs(CNum1.x) < NearZero ) {
- if ( fabs(CNum1.y) < NearZero ) {
- _fret = 0.0;
- }
- if ( (CNum1.y < -(NearZero)) ) {
- _fret = 3.0 * M_PI / 2.0;
- }
- if ( CNum1.y > NearZero ) {
- _fret = M_PI / 2.0;
- }
- return(_fret);
- }
- else {
- if ( fabs(CNum1.y) < NearZero ) {
- if ( (CNum1.x < -(NearZero)) ) {
- _fret = M_PI;
- }
- if ( CNum1.x > NearZero ) {
- _fret = 0.0;
- }
- return(_fret);
- }
- else {
- if ( (CNum1.x > NearZero) && (CNum1.y > NearZero) ) {
- _fret = atan(CNum1.y / CNum1.x);
- }
- if ( (CNum1.x < -NearZero) && (CNum1.y > NearZero) ) {
- _fret = M_PI - atan(-CNum1.y / CNum1.x);
- }
- if ( (CNum1.x < -NearZero) && (CNum1.y < -NearZero) ) {
- _fret = M_PI + atan(CNum1.y / CNum1.x);
- }
- if ( (CNum1.x > NearZero) && (CNum1.y < -NearZero) ) {
- _fret = 2.0 * M_PI - atan(-CNum1.y / CNum1.x);
- }
- }
- }
- }
- return(_fret);
- }