Filter löschen
Filter löschen

How to write case in simple way ?

1 Ansicht (letzte 30 Tage)
Henry Buck
Henry Buck am 23 Mär. 2016
Kommentiert: Henry Buck am 27 Mär. 2016
Hi,
Is there a simple/short way to write switch case ?
instead : case {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20} ... ... otherwise ...
something like case 1 to 20 or case {1:20} ?
Thanks,
Henry

Akzeptierte Antwort

per isakson
per isakson am 24 Mär. 2016
Bearbeitet: per isakson am 24 Mär. 2016
One way
>> cssm(12)
12
where
function cssm(jj)
switch jj
case num2cell([1:24])
disp( jj )
otherwise
disp('failed')
end
end
And
case num2cell([1:24])
may be replaced by
case num2cell(1:24)
in contemporary releases of Matlab

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by