home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include "complex.h"
- # include "cgj.h"
- # include "miscio.h"
- # include <ctype.h>
- # include <stdio.h>
-
- struct complext xary[100];
- struct complext inv[100];
- struct complext yary[100];
- struct complext solution[100];
- int numvar;
- int i;
- int j;
- float matdet;
- char signr;
- char signi;
- char answer;
- struct complext com;
- float angle;
-
-
-
-
-
- void GetData()
-
- {
- int j,i;
-
- ClrScr();
- answer = 'n';
- while ( answer == 'n' ) {
- printf( "Enter number of equations - must equal number of variables: ");
- scanf("%d", &numvar);
- printf("\n");
- printf("You will be asked to enter the complex coefficients.\n");
- printf("Enter the real part first, followed by a space, then the\n");
- printf( "coefficient of the imaginary part.\n");
- for ( i = 0; i <= numvar-1; ++i ) {
- printf("Equation # % d\n", i);
- for ( j = 0; j <= numvar-1; ++j ) {
- printf("Complex coefficient # % d = ", j );
- scanf("%f %f", &xary[i*numvar+j].x,&xary[i*numvar+j].y);
- }
- printf(" constant = ");
- scanf("%f %f", &yary[i].x, &yary[i].y);
- printf("\n");
- }
- ClrScr();
- printf( "The following system of equations was entered:\n");
- printf("\n");
- for ( i = 0; i <= numvar-1; ++i ) {
- for ( j = 0; j <= numvar-1; ++j ) {
- printf("(%5.2f %5.2fi X%1d)", xary[i*numvar+j].x,
- xary[i*numvar+j].y, j );
- if ( j != numvar ) {
- printf( " + ");
- }
- }
- printf(" = (%5.2f %5.2fi)", yary[i].x, yary[i].y);
- printf("\n");
- }
- printf( "is this right (y OR n) ? ");
- answer = getch();
- answer = toupper(answer);
- }
- }
-
- void CheckAnswer()
- {
- struct complext sum[100];
- struct complext temp;
- int i;
- int j;
-
- printf( "Checking the answer by calculating y values using calculated\n");
- printf( "x values and original coefficients.\n");
- for ( i = 0; i <= numvar-1; ++i ) {
- sum[i].x = 0;
- sum[i].y = 0;
- for ( j = 0; j <= numvar-1; ++j ) {
- ComplexMath(xary[i*numvar+j],'*',solution[j],&temp);
- ComplexMath(sum[i],'+',temp,&sum[i]);
- }
- printf("y%2d = ", i );
- printf("(%6.2f %6.2fj )", sum[i].x, sum[i].y);
- printf("\n");
- }
- }
-
-
- void main()
-
- {
- ClrScr();
- GetData();
- printf("\n");
- printf("\n");
- ComplexGaussJordan(xary,yary,numvar,solution,inv,&matdet);
-
- printf( "The solution is: \n");
- printf("\n");
- for ( i = 0; i <= numvar-1; ++i ) {
- printf("x %1d = %6.3f %6.3fj\n", i, solution[i].x, solution[i].y);
- }
- printf("\n");
- printf("matrix determinant = %6.3f\n", matdet);
- CheckAnswer();
-
-
-
- }
-