Info
この質問は閉じられています。 編集または回答するには再度開いてください。
way to use returned valued of a if clause
1 回表示 (過去 30 日間)
古いコメントを表示
I have an if clause
if expression
do-something
end
I would use the value return by
expression
into the if clause. Does it exist a way to do this?
2 件のコメント
回答 (1 件)
José-Luis
2012 年 11 月 9 日
I assume you mean something like, in C/C++ style
if (++i == some_value){
//do something with the new value of i
}
Then, no, I don't think you can do that.
But you can always do
your_val = expression
if your_val == something %some condition
%some operation on your_val
end
1 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!