1) روش دو بخشی ( Bisection method ) دانلود رمز فایل : AliAshouri
disp (' This is the code of Bisection method.Is written by Ali Ashouri')
disp (' ')
disp (' ')
disp (' ********Before enter anything read all of introduction that will write. read all of them*******')
disp (' ')
format long
روش نابجایی ( Regular falsi method ) دانلود رمز فایل : AliAshouri
disp (' This is the code of Regular falsi method.Is writen by Ali Ashouri')
disp (' ')
disp (' ')
disp (' ********Before enter anything read all of introduction that will write. read all of them*******')
disp (' ')
format long
روش سکانت ( Secant ) دانلود رمز فایل : AliAshouri
disp (' This is the code of Secant method.Is writen by Ali Ashouri')
disp (' ')
disp (' ')
disp (' ********Before enter anything read all of introduction that will write. read all of them*******')
disp (' ')
format long
2) روش نیوتون ( Newton Method ) دانلود رمز فایل : AliAshouri
disp (' This is the code of Newton-Raphson method.Is writen by Ali Ashouri')
disp (' ')
disp (' ')
disp (' ********Before enter anything read all of introduction that will write. read all of them*******')
disp (' ')
format long
در درس محاسبات عددی روش هایی برای حل معادلات غیر خطی و بدست آوردن ریشه های معادلات وجود دارد که برنامه کامل آن ها به زبان متلب در ذیل آورده شده است:
1) Bisection ( تنصیف یا دو بخشی )
2) Regular falsi ( نابجایی )
3) Newton-Raphson
4) secant ( وتری )
5) fixed point iteration ( نقطه تکرار )
رمز فایل : AliAshouri