i know this is a false postion method code would the question mark be func(es) ?

function [xr ea iter] = falsepos(func, x1, xu, es, maxit)
% function [xr ea iter] = falsepos(func, x1, xu, es, maxit)
if func(x1)*func(xu)>=0, error('no sign shange'); end
xold = x1;
for iter=1:maxit
fl = func(xl);
fu = func(xu);
xr = ????

Respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Centro de ayuda y File Exchange.

Preguntada:

el 25 de Feb. de 2015

Editada:

el 25 de Feb. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by