what is wrong with fprintf
Mostra commenti meno recenti
why does not this function give the full text in fprintf:
function printem(a,b)
fprintf('the first number is %.lf and the second is %.lf\n',a,b)
end
what is displayed in matlab is
>> printem(3,5) the first number is>>
Risposta accettata
Più risposte (2)
Walter Roberson
il 19 Ott 2011
1 voto
You appear to have used %.lf (lower-case L) instead of %.1f (digit one)
Harry MacDowel
il 19 Ott 2011
Try this
fprintf('the first number is %0.1f and the second is %0.1f\n',a,b)
Categorie
Scopri di più su Entering Commands in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!