fzero use with offset

1 visualización (últimos 30 días)
Simon Kreibich
Simon Kreibich el 25 de En. de 2016
Comentada: Simon Kreibich el 25 de En. de 2016
Hi,
is it possible to make an offset with fzero?
I have a function where I found the root with fzero. Now I want to use the same function but with an offset and let fzero compute the root of the function + offset.
Is this possible somehow?
Thank you for your help.
  1 comentario
Torsten
Torsten el 25 de En. de 2016
Define a new function to be your old function plus the offset and call fzero again with this new function.
Best wishes
Torsten.

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 25 de En. de 2016
Editada: Stephen23 el 25 de En. de 2016
>> fun = @(x) x^2;
>> ofs = 3;
>> z = fzero(@(x)fun(x)-ofs,1)
z = 1.7321
and confirm that the function value is (almost) zero:
>> fun(z)-ofs
ans = -3.9968e-015
>> fun(z)
ans = 3.0000
  1 comentario
Simon Kreibich
Simon Kreibich el 25 de En. de 2016
Oh, I thought I need to add the offset via an option.
Thank you, I solved my problem! Just that simple..

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Call Web Services from MATLAB Using WSDL en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by