-
Notifications
You must be signed in to change notification settings - Fork 0
/
gaussJordan.c
77 lines (66 loc) · 1.08 KB
/
gaussJordan.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main()
{
puts("enter the row and column number of the matrix");
int row,column;
scanf("%d%d",&row,&column);
int mat[row][column+1];
puts("enter the coefficient matrix");
for(int i=0;i<row;i++)
{
for(int j=0;j<column;j++)
{
scanf("%d",&mat[i][j]);
}
}
puts("enter the input vector");
for(int i=0;i<row;i++)
{
scanf("%d",&mat[i][column]);
}
for(int i=0;i<row;i++)
{
for(int j=0;j<=column;j++)
{
printf("%d ",mat[i][j]);
}
puts("");
}
/** identity matrix **/
for(int j=0;j<row;j++)
{
for(int i=0;i<row;i++)
{
if(j!=i)
{
int m=mat[j][j];
int n=mat[i][j];
for(int k=0;k<=column;k++)
{
mat[i][k]=(m*mat[i][k])-(n*mat[j][k]);
}
}
}
}
for(int i=0;i<row;i++)
{
for(int j=0;j<=column;j++)
{
printf("%d ",mat[i][j]);
}
puts("");
}
/** getting solution **/
int ans[row];
for(int j=0;j<row;j++)
{
ans[j]=(mat[j][column])/(mat[j][j]);
}
/** answer **/
for(int i=0;i<row;i++)
{
printf("%d\n",ans[i]);
}
}