Help with my bisection method of a certain function!
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello, I am a new user of MatLab and recently had to write up a bisection method program for the function f(x) = x + 2*cos(x).
This is what I got:
function[f] = hw3_bisection(tol,N,a,b)
f = @(x) (x + 2*cos(x));
for counter = 1:N
x = (a+b)/2;
while abs(f(x)) < tol
x = (a+b)/2;
if f(x) == 0
f = x;
end
if f(a) * f(x) > 0
a = x;
else
b = x;
end
end
end
but the problem for me is that the output is always x + 2*cos(x), and even if I say disp(x) it gives me ans = x + 2*cos(x) and the (a+b)/2 without going through the rest of the loop. How do I fix this to get the real solution?
0 commentaires
Réponse acceptée
Matt J
le 27 Sep 2014
You are using 'f' for 2 different things in your function. Use a different variable for the value returned by the function.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!