How to get rid of the zero decimal?
Show older comments
One of my Matlab assignment answers are like:
1.0000 76.0000 23.0000 8.0000 68.0000 24.0000
But I want it to be like
1 76 23 8 68 24
How can I fix this?
Answers (3)
Babak
on 10 Sep 2012
Type
format short
in the command window
Star Strider
on 10 Sep 2012
Edited: Star Strider
on 10 Sep 2012
0 votes
If you are talking about the Command Window output, see format. If you always want a particular output format, you can change it in preferences. Otherwise, see fprintf for print format specifiers.
Walter Roberson
on 10 Sep 2012
0 votes
round() the output: it is currently not exact integers.
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!