Can I execute only one case inside multiple cases inside switch ?
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
The code below is execution the cases randomly, for example in the first round 3 1 2 in the second round 2 1 3 and so forth.  my question can I execute only one case each round, for example in the first round case 2 is executed and in the second round selecting case 1 and so forth. ?
thanks in advance
for jj=1:20
    for randCases=randperm
        switch randCases
            case 1
                for best_1
                    for i_1
                        do calculation
                    end
                end
            case 2
                for best_2
                    for i_2
                        do calculation
                    end
                end
            case 3
                for best_3
                    for i_3
                        do calculation
                    end
                end
        end
    end
end
0 Kommentare
Akzeptierte Antwort
  VBBV
      
      
 am 3 Mai 2023
        Yes, you can execute it single case from each round by adding an extra for loop  
% define round sequence 
randCases=randperm(3,3)
% add an extra loop 
for k = 1:length(randCases)
        switch randCases(k)
            case 1
                for best_1
                    for i_1
                        do calculation
                    end
                end
            case 2
                for best_2
                    for i_2
                        do calculation
                    end
                end
            case 3
                for best_3
                    for i_3
                        do calculation
                    end
                end
        end
end 
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!