在switch语句的case_expression中出现3|4这样的表达式是什么意思
조회 수: 5 (최근 30일)
이전 댓글 표시
a=1;
switch a
case 3|4
disp('ok');
case {1,2}
disp('perfect');
otherwise
disp('no');
end
댓글 수: 0
답변 (1개)
Angelo Yeo
2023년 7월 25일
就是或者的意思。但是现在的方式是错的因为3|4总是True的。所以不论a是什么结果就会是ok啊。
3|4
您反而要用{}了。看一下以下的例子。
a=1;
switch a
case {3,4}
disp('ok');
case {1,2}
disp('perfect');
otherwise
disp('no');
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 多项分布에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!