how to increment variable while logical true?

14 ビュー (過去 30 日間)
akshay raj
akshay raj 2015 年 1 月 21 日
コメント済み: akshay raj 2015 年 1 月 21 日
Hi,
I am new to matlab, I want to increment a number when its true.
i tried doing this as a script
global variable;
variable = true;
while (variable)
a=1;
a=a+1;
dips(a);
end
shouldn't this display an incremented value
1
2
3
4
.
.
.
but all i get is
2
2
2
2
.
.
Am i doing something wrong? help!

採用された回答

Image Analyst
Image Analyst 2015 年 1 月 21 日
編集済み: Image Analyst 2015 年 1 月 21 日
You're setting a back equal to 1 inside the loop. Why? That should be outside the loop. I think you should look at this: http://blogs.mathworks.com/videos/2012/07/03/debugging-in-matlab/
global variable;
variable = true;
a = 1;
while variable
a=a+1
if a > 20
variable = false; % Break out of loop.
end
end
  1 件のコメント
akshay raj
akshay raj 2015 年 1 月 21 日
thats a silly mistake. thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by