How to use switch statement
조회 수: 4 (최근 30일)
이전 댓글 표시
I need to create a function through switch statements that are from one bound to the next bound. How would i use the case to display bound1 through bound2. Every variable falling within the bounds is included in the case.
i have
switch n
case {bound1 through bound2}
댓글 수: 2
채택된 답변
Matt J
2022년 10월 14일
No, do it like this:
[lettergrade] = curvedGrade(71,[90,80,70,60, 50])
function [lettergrade] = curvedGrade(grade,bound)
gradeList=flip(["A" "B" "C" "D" "F"]);
idx=discretize(grade,[flip(bound(:));100]);
lettergrade=gradeList(idx);
end
댓글 수: 0
추가 답변 (1개)
Walter Roberson
2022년 10월 14일
https://www.mathworks.com/help/matlab/ref/double.discretize.html and switch on the bin number.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Animation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!