Bisection Numerical Method

Function for finding the root: x, where f(x) = 0, using the bisection bracketing method
128 Descargas
Actualizado 20 feb 2017

Ver licencia

% Inputs: with examples
% AF = anonymous function equation: AF = @(x) 1-((20^2)./(9.81*(((3*x)+((x.^2)/2)).^3))).*(3+x);
% xb = initial guess x bracket = [xL xU], where xL = lower boundary x and xU = upper boundary x: xb = [0 2.5];
% ed = desired approximate relative error = |(current - previous)/current|: ed = 0.01;
% Outputs
% xR = x root
% err = approximate relative error
% n = number of iterations
% xRV = x root vector
% errV = approximate relative error vector
% AFD1 = anonymous function 1st derivative
% AFD2 = anonymous function 2nd derivative

Citar como

Roche de Guzman (2026). Bisection Numerical Method (https://la.mathworks.com/matlabcentral/fileexchange/61678-bisection-numerical-method), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2015b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Geometry and Mesh en Help Center y MATLAB Answers.
Versión Publicado Notas de la versión
1.0.0.0