Error using fzero function

조회 수: 12 (최근 30일)
Simon Kreibich
Simon Kreibich 2016년 1월 19일
편집: Matt J 2016년 1월 19일
Hi guys,
I'm trying to use fzero to find the root of my function. It's nonlinear. But I'm getting this Error:
Error using fzero (line) FUN must be a function, a valid string expression, or an inline function object.
y = -0.6:0.001:0.6;
z = 0.1;
solutionsofthefunction = arrayfun(@(x) functionname(y, x), z);
fun = arrayfun(@(x)theta_delta_plot(z, x), y);
x0 = 0;
x = fzero(fun, x0)
can anyone give me a hint what I'm doing wrong?

채택된 답변

Matt J
Matt J 2016년 1월 19일
편집: Matt J 2016년 1월 19일
It looks like this is what you're really trying to do,
x = fzero( @(x)theta_delta_plot(z, x) , x0)
  댓글 수: 3
Steven Lord
Steven Lord 2016년 1월 19일
It's just displaying 4 decimal places. Use the FORMAT command to change how the numbers are displayed (it does NOT how the numbers are used in computations.)
Matt J
Matt J 2016년 1월 19일
편집: Matt J 2016년 1월 19일
Is it possible to get closer to my root? Right now it looks like this:
The dark blue asterisk is what fzero found? Looks pretty close to zero to me, but you could zoom the y-axis so that we could see better.
I don't understand what the cyan line is supposed to show. Presumably it is the linear interpolation that the plotter is making between your given points. If so, its distance from the asterisk is meaningless. Redo the plot with finer sampling in the neighborhood of the fzero solution, and tell us what the sampling is.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Roger Wohlwend
Roger Wohlwend 2016년 1월 19일
As the error message says, fzero needs a function handle as first Input Argument. Your variable fun is a Vektor or a Matrix, if I am not mistaken. Your code is a bit confusing. The first four lines don't have anything to do with your Goal of finding the Zeros of your function.
  댓글 수: 2
Simon Kreibich
Simon Kreibich 2016년 1월 19일
편집: Simon Kreibich 2016년 1월 19일
I have a function which takes 2 parameters: first value as theta (z), and the second one is a vektor (y). With this function I calculate the changes of theta for each value of the vektor y. So my output has the same size as the vektor y.
With the third line I'm computing the function with thoes inputs.
For fzero I need this function, but I don't know how to do it.
How can I prove this function of a root using fzero?
edit: the image shows the output of the vektor of the functions and are plotted with the vektor y
plot(output_vektor, y)
Roger Wohlwend
Roger Wohlwend 2016년 1월 19일
Sorry, I still have no clue what you mean with your lines 2 and 3. Part of the Problem is the variable and function names. If you speak German, as I suspect, please formulate your Problem in German. Describe in Detail what you want to do.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Surrogate Optimization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by