Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Numerical MethodsRSS Feeds

GAUSS SEIDEL METHOD

Posted By: Harriet Hughes     Category: C Programming     Views: 33144

Write a program of GAUSS SEIDEL METHOD.

Code for GAUSS SEIDEL METHOD in C Programming

#include<stdio.h>
#include<conio.h>
#include<math.h>
#define ESP 0.0001
#define X1(x2,x3) ((17 - 20*(x2) + 2*(x3))/20)
#define X2(x1,x3) ((-18 - 3*(x1) + (x3))/20)
#define X3(x1,x2) ((25 - 2*(x1) + 3*(x2))/20)


void main()
{
  double x1=0,x2=0,x3=0,y1,y2,y3;
  int i=0;
  clrscr();
  printf("\n__________________________________________\n");
  printf("\n   x1\t\t   x2\t\t   x3\n");
  printf("\n__________________________________________\n");
  printf("\n%f\t%f\t%f",x1,x2,x3);
  do
  {
   y1=X1(x2,x3);
   y2=X2(y1,x3);
   y3=X3(y1,y2);
   if(fabs(y1-x1)<ESP && fabs(y2-x2)<ESP && fabs(y3-x3)<ESP )
   {
     printf("\n__________________________________________\n");
     printf("\n\nx1 = %.3lf",y1);
     printf("\n\nx2 = %.3lf",y2);
     printf("\n\nx3 = %.3lf",y3);
     i = 1;
   }
   else
   {
     x1 = y1;
     x2 = y2;
     x3 = y3;
     printf("\n%f\t%f\t%f",x1,x2,x3);
   }
  }while(i != 1);
getch();
}

/*

OUT PUT
___________

__________________________________________

x1 x2 x3

__________________________________________

0.000000 0.000000 0.000000
0.850000 -1.027500 1.010875
1.978588 -1.146244 0.880205
2.084265 -1.168629 0.866279
2.105257 -1.172475 0.863603
2.108835 -1.173145 0.863145
2.109460 -1.173262 0.863065
2.109568 -1.173282 0.863051
__________________________________________


x1 = 2.110

x2 = -1.173

x3 = 0.863


*/
  
Share: 

 
 
 

Didn't find what you were looking for? Find more on GAUSS SEIDEL METHOD Or get search suggestion and latest updates.

Harriet Hughes
Harriet Hughes author of GAUSS SEIDEL METHOD is from London, United Kingdom.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!