You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
Use fixed-point iteration to solve the following equation with x0=1
x=1+0.3*sinx
x0=1;
error=1;
while abs(error)>=1e-6
x1=1+0.3*sin(x0);
error=x1-x0;
x0=x1;
end
fprintf('%f\n',x0);
Cite As
Arthur Matlabus (2026). Fixed Point Iteration Method (https://uk.mathworks.com/matlabcentral/fileexchange/167371-fixed-point-iteration-method), MATLAB Central File Exchange. Retrieved .
General Information
- Version 1.0.0 (1.06 KB)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
| Version | Published | Release Notes | Action |
|---|---|---|---|
| 1.0.0 |
