hidding ans in menu
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
hello guys,
i made this function
.
a = menu ('Wanna plot....?','Yes','No') if a == 1
plot................. .
elseif a == 2
disp('Not plotting...');
end
.
but when the user click on the button it return the asnwer like:
a =
2
.
or
.
a =
1
.
how do i hide this ans??
thx :)
0 Kommentare
Akzeptierte Antwort
Honglei Chen
am 1 Nov. 2013
Bearbeitet: Honglei Chen
am 1 Nov. 2013
Put a semi-colon behind menu line
a = menu ('Wanna plot....?','Yes','No');
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Specifying Target for Graphics Output 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!