Filter löschen
Filter löschen

Cases with a changing string length

1 Ansicht (letzte 30 Tage)
JP
JP am 19 Jun. 2013
Hi, Im trying to make the following code work and it just wont seem to do what I want. NOTE - The string length of my variable is changing so for different cases I want a different interval.
Astr = '123456789'
switch Astr
case strcmp(Astr([2:4,5:7]), '234567' )
x = 5
case strcmp(Astr([3:6,6:8]), '789123' )
x = 6
case strcmp(Astr([1:3,4:6]), '912345' )
x = 7
otherwise
x = 8
end
I think it has to do with the way Im defining the string values, it keeps outputting x = 8 (the otherwise case). Please let me know how to fix thanks!
  1 Kommentar
Iain
Iain am 19 Jun. 2013
What is it that you're actually trying to achieve? There may be a better way.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

David Sanchez
David Sanchez am 19 Jun. 2013
You are not using the switch-case properly. In your case, your code check the value of Astr and see if it equals any of the cases you define. Since none of the cases equal your Astr, it returns the otherwise case. The code is just right, the way you code what you want is not.
  1 Kommentar
JP
JP am 19 Jun. 2013
Ok I see what you mean....Im having trouble figuring out how to fix it still though, any suggestions?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu App Building finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by