Undefined function or variable
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
UTS
am 9 Feb. 2014
Kommentiert: Mischa Kim
am 9 Feb. 2014
I got error as stated below, your assistance would be greatly appreciated, Thank you
A=3e3;
B=2e3;
while (abs(A-B))<50
x=4*A;
y=B*A*3;
end
x
y
****** Undefined function or variable 'x'.
Error in ddff (line 7) x
********
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 9 Feb. 2014
Bearbeitet: Mischa Kim
am 9 Feb. 2014
UTS, with those values for A and B you never enter the loop and therefore no values are assigned to x, which is why it is not defined.
One thing you could do is initialize x and y to zero before the loop.
2 Kommentare
Mischa Kim
am 9 Feb. 2014
Right, as I pointed out above, with A = 3000 and B = 2000 you never enter the loop, since 3000 - 2000 > 50. Try for example A = B = 3000. Note, however, that you are neither changing A nor B inside the loop. This means that the loop condition is always satisfied and you're stuck in an endless loop.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!