mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-21 21:11:57 +03:00
16 Oct
This commit is contained in:
parent
40d6a64856
commit
d4bc8cd8d6
26
Computer Oriented Statistical Methods/Seidal.C
Normal file
26
Computer Oriented Statistical Methods/Seidal.C
Normal file
@ -0,0 +1,26 @@
|
||||
#include<stdio.h>
|
||||
#include<conio.h>
|
||||
#include<math.h>
|
||||
void main()
|
||||
{
|
||||
float a,b,c,a1,a2,a3,b1,b2,b3,c1,c2,c3,d1,d2,d3,x1,x2,x3;
|
||||
clrscr();
|
||||
printf("Enter values of eq1:");
|
||||
scanf("%f%f%f%f",&a1,&a2,&a3,&d1);
|
||||
printf("Enter values of eq2:");
|
||||
scanf("%f%f%f%f",&b1,&b2,&b3,&d2);
|
||||
printf("Enter values of eq3:");
|
||||
scanf("%f%f%f%f",&c1,&c2,&c3,&d3);
|
||||
x1=x2=x3=0.0;
|
||||
do
|
||||
{
|
||||
a=x1;
|
||||
b=x2;
|
||||
c=x3;
|
||||
x1=(1/a1)*(d1-(a2*x2)-(a3*x3));
|
||||
x2=(1/b2)*(d2-(b1*x1)-(b3*x3));
|
||||
x3=(1/c3)*(d3-(c1*x1)-(c2*x2));
|
||||
}while(fabs(x1-a)>0.0001&&fabs(x2-b)>0.0001&&fabs(x3-c)>0.0001);
|
||||
printf("x1=%f\nx2=%f\nx3=%f",x1,x2,x3);
|
||||
getch();
|
||||
}
|
Loading…
Reference in New Issue
Block a user