output of function as a string
48 ビュー (過去 30 日間)
古いコメントを表示
function answer=harflertall(a)
if a==50
answer=disp('it''s a tie')
elseif a<50
answer=disp('less than 50')
else
answer=disp('more than 50')
end
can not output be assigned to be a string?
0 件のコメント
採用された回答
Titus Edelhofer
2011 年 10 月 31 日
Hi,
yes it can: disp displays the string in the command window. Just write
answer='less than 50'
Titus
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!