Storage of a loop from negative number
Mostra commenti meno recenti
How i can storage a loop from negative number For example I have the below loop
for x=-1.5:0.01:1.5
for y=-1.5:0.01:1.5
(x,y)=92.5+(32.53333333)*(x)+(40.12702079)*(y)+(-42.2)*(x^2)+(-34.93538288)*(y^2)+(-3.464203233)*((x)*(y))
end
end
Best regards
Risposta accettata
Più risposte (2)
Andrei Bobrov
il 19 Ott 2011
i1 = -1.5:0.01:1.5;
f = @(x,y)92.5+32.53333333*x+40.12702079*y-42.2*x.^2-34.93538288*y.^2-3.464203233*x.*y;
Z = bsxfun(f,i1',i1);
1 Commento
Oleg Komarov
il 19 Ott 2011
Good Idea.
Oleg Komarov
il 19 Ott 2011
Loop version:
z = zeros(1,301^2);
n = 0;
for x =-1.5:0.01:1.5
for y =-1.5:0.01:1.5
n = n+1;
z(n)=92.5+32.53333333*x+40.12702079*y-42.2*x^2-34.93538288*y^2-3.464203233*x*y;
end
end
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!