Borrar filtros
Borrar filtros

Having issue with this secant method code

1 visualización (últimos 30 días)
ray sanchez
ray sanchez el 28 de Abr. de 2015
Editada: ray sanchez el 28 de Abr. de 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

Respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by