How to get rid of the zero decimal?
이전 댓글 표시
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?
답변 (3개)
Babak
2012년 9월 10일
Type
format short
in the command window
Star Strider
2012년 9월 10일
편집: Star Strider
2012년 9월 10일
0 개 추천
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
2012년 9월 10일
0 개 추천
round() the output: it is currently not exact integers.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!