ad

Thursday, 5 July 2012

program to find the inverse of a matrix

//program to find the inverse of a matrix
#include
#include
#include
void trans(int a[10][10],int fac[10][10],int k,float dt)
{
int i,j;
float r[10][10];
printf("\n\nThe inverse of the matrix is :\n\n");
for(i=0;i

No comments:

Post a Comment