joining integer ans decimal part of number
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have 2 numbers say 100 and 0.025 and I want to print them as 100.025, how this could be done?
0 Commenti
Risposte (1)
Star Strider
il 29 Ago 2018
The easiest way is to just add them:
n1 = 100
n2 = 0.025
N = n1+n2
To print them:
sprintf('%.3f', n1+n2)
0 Commenti
Vedere anche
Categorie
Scopri di più su Numeric Types 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!