Fixed Point Iteration Method

Use fixed point iteration

Vous suivez désormais cette soumission

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);

Citation pour cette source

Arthur Matlabus (2026). Fixed Point Iteration Method (https://fr.mathworks.com/matlabcentral/fileexchange/167371-fixed-point-iteration-method), MATLAB Central File Exchange. Extrait(e) le .

Add the first tag.

Informations générales

Compatibilité avec les versions de MATLAB

  • Compatible avec toutes les versions

Plateformes compatibles

  • Windows
  • macOS
  • Linux
Version Publié le Notes de version Action
1.0.0