This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % | |
% Fungsi ini digunakan untuk mencari solusi dari sistem | |
% persamaan dengan n variabel berbentuk x=F(x) | |
% | |
% Cara menjalankan program, ketik perintah dibawah ini dalam | |
% Command Window: Iterasi_N_Variabel(func,x0,tol) | |
% | |
% INPUT: | |
% func = Isi fungsi yang berisikan sistem persamaan yang akan | |
% dicari solusinya |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Soal nomor 1: | |
% Tentukan solusi persamaan | |
% sin(x)+3cos(x)- 2 = 0 | |
% cos(x)-sin(y) + 0.2 = 0 | |
% dengan tebakan awal (1,1). | |
% | |
% | |
% Pembahasan: | |
% Persamaan tersebut akan diubah kedalam bentuk | |
% x=f(x,y) dan y=g(x,y) |