Switch case simple mistake
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ddd ppp
el 8 de Oct. de 2017
Editada: Walter Roberson
el 8 de Oct. de 2017
Hi, why doesnt 'works' show when i run this? Is it because the case has to be the switch input?
inStr='d'
switch inStr
case inStr(1)=='d'
outStr='works'
otherwise
'error'
end
0 comentarios
Respuesta aceptada
Walter Roberson
el 8 de Oct. de 2017
case inStr(1)=='d' evaluates inStr(1)=='d', generating the value false or true. That value is then compared to inStr because of switch inStr, and is found to not equal to inStr.
switch inStr(1)
case 'd'
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Operators and Elementary Operations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!