How can i solve this equation with for loop?

5 vues (au cours des 30 derniers jours)
Volkan Yangin
Volkan Yangin le 9 Mar 2017
Commenté : Volkan Yangin le 9 Mar 2017
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?

Réponse acceptée

Torsten
Torsten le 9 Mar 2017
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 commentaire
Volkan Yangin
Volkan Yangin le 9 Mar 2017
Thank you Torsten. This is a random equation. I am checking the code.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Function Creation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by