hi everyone.my teacher want me a simple program which calculate addition,multiplication,transpose and inversion of 3x3 matrix.
i overcame addition,multiplication and transpose but i get stuck in inversion part. i want your help in this matter..
here is my program's code:
#include<iostream>
using namespace std;
int main()
{
int a[3][3] , b[3][3] , c[3][3], d[3][3];
int i , j , k;
cout<<"enter the 3x3 N matrix \n"<<endl;
for( i = 0 ; i < 3 ; i++)
for( j = 0 ; j < 3 ; j++)
cin>>a[i][j];