How to use switch statement
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
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 Commenti
Risposta accettata
  Matt J
      
      
 il 14 Ott 2022
        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 Commenti
Più risposte (1)
  Walter Roberson
      
      
 il 14 Ott 2022
        https://www.mathworks.com/help/matlab/ref/double.discretize.html and switch on the bin number.
0 Commenti
Vedere anche
Categorie
				Scopri di più su Animation in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!