Filter löschen
Filter löschen

Having issue with this secant method code

1 Ansicht (letzte 30 Tage)
ray sanchez
ray sanchez am 28 Apr. 2015
Bearbeitet: ray sanchez am 28 Apr. 2015
It's having an issue with the second line when it asks to enter the function. any help appreciated
clear all; close all;
a=input('What is the function? ' );
f=inline(a)
x(1)=input('What is your first guess? ');
x(2)=input('What is your second guess? ');
tol=input('What is the tolerance? ');
iteration=0;
i=2;
eps = 1e10;
while (abs(eps) > tol)
x(i+1)=x(i)-f(x(i))*(x(i)-x(i-1))/(f(x(i))-f(x(i-1)));
eps = x(i+1)-x(i);
i = i+1;
x(i)
end

Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by