Azzera filtri
Azzera filtri

output of function as a string

26 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Titus Edelhofer
Titus Edelhofer il 31 Ott 2011
Hi,
yes it can: disp displays the string in the command window. Just write
answer='less than 50'
Titus

Più risposte (0)

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by