Error in repetition of for loop

1 回表示 (過去 30 日間)
Fu Xiangli
Fu Xiangli 2016 年 9 月 7 日
編集済み: mbonus 2016 年 9 月 8 日
Hi guys. I have a code below:
if p && u <= length(r) && r(p) > r(n) && r(u) >= r(p);
is_upslope = true;
However, when my u is greater than the length(r), it still gives me is_upslope = true. May I know what is the problem? Thanks
  1 件のコメント
per isakson
per isakson 2016 年 9 月 7 日
I cannot reproduce your result. What values do your variables have?

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

回答 (1 件)

mbonus
mbonus 2016 年 9 月 7 日
編集済み: mbonus 2016 年 9 月 7 日
I believe that your second test of <=length(r) is being tested against a logical 1. This is due to the fact that p && u is being evaluated first which returns a logical 1 assuming they are both nonzero. so the test actually ends up seeing
1 <= length(r) ...
instead you need to format it like this: (also parenthesis while not required make it easier to read)
if (p <= length(r)) && (u <= length(r)) && (r(p) > r(n)) && (r(u) >= r(p))
  2 件のコメント
Thorsten
Thorsten 2016 年 9 月 8 日
mbonus
mbonus 2016 年 9 月 8 日
編集済み: mbonus 2016 年 9 月 8 日
Oh wow I didn't realize MATLAB did it like that, probably because I always use parenthesis, thank you.

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

カテゴリ

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