Sie verfolgen jetzt diese Einreichung
- Aktualisierungen können Sie in Ihrem Feed verfolgter Inhalte sehen.
- Je nach Ihren Kommunikationseinstellungen können Sie auch E-Mails erhalten.
b)use Bisection method
%c şıkkı - Bisection method
xup=3.1;
xlow=3.0;
error=1;
while abs(error)>=1e-6
xmid=(xup+xlow)/2;
error=xmid.^3-6*xmid.^2+11*xmid-6.1;
if (xup.^3-6*xup.^2+11*xup-6.1)*(xmid.^3-6*xmid.^2+11*xmid-6.1)>0
xup=xmid;
else
xlow=xmid;
end
end
fprintf('%f',xmid);
Zitieren als
Arthur Matlabus (2026). Bisection Method (https://de.mathworks.com/matlabcentral/fileexchange/167366-bisection-method), MATLAB Central File Exchange. Abgerufen .
Allgemeine Informationen
- Version 1.0.0 (1,17 KB)
Kompatibilität der MATLAB-Version
- Kompatibel mit allen Versionen
Plattform-Kompatibilität
- Windows
- macOS
- Linux
| Version | Veröffentlicht | Versionshinweise | Action |
|---|---|---|---|
| 1.0.0 |
