Experiment 3 - Fixed Point Iteration Method
Experiment 3 - Fixed Point Iteration Method
LAB REPORT 03
Question
No: 01
clc
clear all
x1(1)=1.5;
x2(1)=1.5;
x3(1)=1.5;
x4(1)=1.5;
x5(1)=1.5;
for i=1:30
g4(i) = (10/(4+(x4(i))))^(0.5);
x4(i+1)=g4(i);
Output: