isletter true false
Ältere Kommentare anzeigen
How does isletter work here. Is it the value 1 that makes it executable and the value 0 that makes it not excecute and go to else?
Akzeptierte Antwort
Weitere Antworten (2)
Wayne King
am 15 Okt. 2011
0 Stimmen
I don't see isletter() in what you've posted. I see an if statement based on the output of menu()
The menu() call you show outputs a 1,2,or 3 based on what the user selects. 1 for Cheese, 2 for Shroom, and 3 for Sausage.
If the user were to simply kill the figure window, then output would be 0.
2 Kommentare
the cyclist
am 15 Okt. 2011
Wayne, you need to scroll down a bit to see the relevant section he is asking about.
Wayne King
am 15 Okt. 2011
@cyclist, :) oh I see
the cyclist
am 15 Okt. 2011
0 Stimmen
Basically, yes. "1" is a representation of the boolean "true", and "0" is a representation of the boolean "false". So, "if 1" means "if true", and the statement executes accordingly.
1 Kommentar
Tor Fredrik Hove
am 15 Okt. 2011
Kategorien
Mehr zu Interactive Control and Callbacks finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!