Metode Regula Falsi dengan Matlab

06.45.00 ima2512 0 Comments



1. Bukalah program matlab
2. Buatlah fungsi terlebih dahulu dalam editor
Jangan lupa untuk save function tersebut
3. Setelah membuat Function di Editor, buat new editor dan ketik
x1=1
x2=1.5
fx1=imut(x1)
fx2=imut(x2)
x01=x1-(fx1*(x2-x1)/(fx2-fx1))
fx01=imut(x01)
x02=x01-(fx01*(x2-x01)/(fx2-fx01))
fx02=imut(x02)
x03=x02-(fx02*(x2-x02)/(fx2-fx02))
fx03=imut(x03)
x04=x03-(fx03*(x03-x02)/(fx03-fx02))
fx04=imut(x04)

4. Save editor tersebut, setelah itu ketik CTRL A dan F9 maka di command Window , akan ada

You Might Also Like

0 komentar: