home *** CD-ROM | disk | FTP | other *** search
- # include <stdio.h>
- # include <math.h>
- # include "gj.h"
-
-
- float x[100];
- float inv[100];
- float y[10];
- float solution[10];
- int numvar;
- int i;
- int j;
- float matdet;
- char sign;
- char answer;
-
-
-
- void GetData()
- {
- float temp;
- ClrScr();
- answer = 'N';
- while ( answer == 'N' ) {
- printf("enter number of equations - must equal number of variables: ");
- scanf("%d", &numvar);
- printf("\n");
- for ( i = 0; i <= numvar-1; ++i ) {
- printf("equation # %2d\n", i);
- for ( j = 0; j <= numvar-1; ++j ) {
- printf("coefficient # %2d = ", j);
- scanf("%f", &x[i*numvar+j]);
- }
- printf("constant = ");
- scanf("%f", &y[i]);
- 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 ) {
- if ( x[i*numvar+j] < 0 ) {
- sign = '-';
- }
- else {
- sign = '+';
- }
- temp = fabs(x[i*numvar+j]);
- printf(" %c %8.2f X%2d", sign, temp, j);
- }
- printf(" = %8.2f", y[i]);
- printf("\n");
- }
- printf( "is this right (y OR n) ? ");
- answer = getche();
- printf("\n");
- answer = toupper(answer);
-
- }
- }
-
-
- void main()
- {
- GetData();
- printf("\n");
- printf("\n");
- GaussJordan(x,y,numvar,solution,inv,&matdet);
- printf( "the solution is: \n");
- printf("\n");
- for ( i = 0; i <= numvar-1; ++i ) {
- printf("x %1d = %8.3f\n", i, solution[i]);
- }
- printf("\n");
- printf("matrix determinant = %f\n", matdet);
-
- }
-