hidding ans in menu
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Honglei Chen
2013 年 11 月 1 日
編集済み: Honglei Chen
2013 年 11 月 1 日
Put a semi-colon behind menu line
a = menu ('Wanna plot....?','Yes','No');
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!