How to fine the inverse matrix in c programming?
Answers
Answered by
2
#include<stdio.h>
#include<math.h>
float determinant(float [][25], float);
void cofactor(float [][25], float);
void transpose(float [][25], float [][25], float);
float a[25][25], k, d;
int i, j;
printf("Enter the order of the Matrix : ");
#include<math.h>
float determinant(float [][25], float);
void cofactor(float [][25], float);
void transpose(float [][25], float [][25], float);
float a[25][25], k, d;
int i, j;
printf("Enter the order of the Matrix : ");
Answered by
0
Explanation:
Answer:
It would be 2 upon 4 and - 4 upon -3
explanation:
Because inverse matrix stands for reciprocal..
MARK ME AS BRAINILLEST
THANKS AND FOLLOW ME...
Similar questions