if vs switch
古いコメントを表示
Hi just a simple question, Which is a better use, 'if' or 'switch'? Thanx P
1 件のコメント
Jan
2011 年 9 月 20 日
Please add the relevant part of the code to your question. without seeing any details a decision is not possible.
採用された回答
その他の回答 (1 件)
Walter Roberson
2011 年 9 月 20 日
2 投票
Switch evaluates the value of the switch portion, and then it evaluates each case expression in the list until finally one of the cases matches the switch value. This is pretty much the same complexity as the corresponding if/elseif cascade.
Most people write code as if the switch cases must be constants, but that is not the case in MATLAB: they can be full expressions with function calls and all.
This needs to be compared to other computer languages such as C, in which the case labels do need to be constants. In those other languages, it is possible to do preprocessing such that the time required to decide which branch to use is decided in constant time (or near constant time.) In those languages, switch is more efficient than if/elseif chains.
In MATLAB, if/elseif chains are often able to optimize groups of cases by using extended logical conditions with && and || operators; it is difficult to do that kind of optimization using switch.
カテゴリ
ヘルプ センター および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!