home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <stdio.h>
- # include "complex.h"
- # include "matmath.h"
- # include "miscio.h"
-
- struct complext mat1[3][3];
- struct complext mat2[3][3];
- struct complext mat3[3][3];
- int order;
- float det;
- int i;
- int j;
- int k;
- char message[80];
- struct complext vm;
-
-
- void main()
- {
- mat1[0][0].x = 13;
- mat1[0][1].x = -8;
- mat1[0][2].x = -3;
- mat1[1][0].x = -8;
- mat1[1][1].x = 10;
- mat1[1][2].x = -1;
- mat1[2][0].x = -3;
- mat1[2][1].x = -1;
- mat1[2][2].x = 11;
-
- mat1[0][0].y = 1;
- mat1[0][1].y = 2;
- mat1[0][2].y = 3;
- mat1[1][0].y = 2;
- mat1[1][1].y = 2;
- mat1[1][2].y = 2;
- mat1[2][0].y = 3;
- mat1[2][1].y = 2;
- mat1[2][2].y = 3;
-
- mat2[0][0].x = 1.0;
- mat2[0][1].x = 5.0;
- mat2[0][2].x = 1.0;
- mat2[1][0].x = 3.0;
- mat2[1][1].x = 6.0;
- mat2[1][2].x = 3.0;
- mat2[2][0].x = 0.0;
- mat2[2][1].x = 1.0;
- mat2[2][2].x = -9.0;
-
- mat2[0][0].y = 4.0;
- mat2[0][1].y = 2.0;
- mat2[0][2].y = 3.0;
- mat2[1][0].y = 4.0;
- mat2[1][1].y = 3.0;
- mat2[1][2].y = 1.0;
- mat2[2][0].y = 0.0;
- mat2[2][1].y = 3.0;
- mat2[2][2].y = -6.0;
-
- strcpy(message, "Original mat1 = ");
- CMatPrint(&mat1[0][0],3,3,message);
- printf("\n");
- strcpy(message, "Original mat2 = ");
- CMatPrint(&mat2[0][0],3,3,message);
- printf("\n");
- CMatProd(&mat1[0][0],&mat2[0][0],3,3,3,&mat3[0][0]);
- strcpy(message, "matrix product mat1 x mat2 = ");
- CMatPrint(&mat3[0][0],3,3,message);
- printf( "press carriage return to advance to next procedure \n");
- getch();
- vm.x = 11;
- vm.y = 0;
- CMatScalarProd(&mat1[0][0],vm,3,3,&mat3[0][0]);
- strcpy(message, "matrix scalar product mat1 x 11+ j0 = " );
- CMatPrint(&mat3[0][0],3,3,message);
- printf( "press carriage return to advance to next procedure \n");
- getch();
- CMatAdd(&mat1[0][0],&mat2[0][0],3,3,&mat3[0][0]);
- strcpy(message, "matrix add mat1 + mat2 = ");
- CMatPrint(&mat3[0][0],3,3,message);
- printf("press carriage return to advance to next procedure \n");
- getch();
- CMatTranspose(&mat1[0][0],3,3,&mat3[0][0]);
- strcpy(message, "matrix transpose of mat1 = ");
- CMatPrint(&mat3[0][0],3,3,message);
- printf( "press carriage return to advance to next procedure \n");
- getch();
- CMatInvert(&mat1[0][0],3,&det,&mat3[0][0]);
- strcpy(message, "inverse of matrix mat1 = ");
- CMatPrint(&mat3[0][0],3,3,message);
- CMatProd(&mat1[0][0],&mat3[0][0],3,3,3,&mat2[0][0]);
- strcpy(message, "matrix product mat1 x inverse(mat1) = ");
- CMatPrint(&mat2[0][0],3,3,message);
- }
-