How can i solve this equation with for loop?

조회 수: 2 (최근 30일)
Volkan Yangin
Volkan Yangin 2017년 3월 9일
댓글: Volkan Yangin 2017년 3월 9일
y=[1 4 5 6 8]
for g=1:1:numel(y)
W1(g)=15*y(g)
W2(g)=@(x) x.^2+y(g)
f(g) = @(x) W1(g)+W2(x)+y(g);
ar = [-100 100];
for k1 = 1:length(ar);
rts(k1) = fzero(f(g), ar(k1))
end
end
Error: FUN must be a function, a valid string expression, or an inline function object.
To calculate the roots of this equation, for loop must be used, but i made a mistake when writing the code. How can i achieve this problem?
To find 5 roots of x, how kind of a change must be done for this operation?

채택된 답변

Torsten
Torsten 2017년 3월 9일
y = [1 4 5 6 8];
for g=1:1:numel(y)
W1 = 15*y(g);
W2 = @(x)x.^2+y(g);
f = @(x) W1+W2(x)+y(g);
ar=[-100 100];
for k1 = 1:length(ar)
rts(k1,g)=fzero(f,ar(k1));
end
end
But to tell you in advance: Your equations have no real roots.
Best wishes
Torsten.
  댓글 수: 1
Volkan Yangin
Volkan Yangin 2017년 3월 9일
Thank you Torsten. This is a random equation. I am checking the code.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by