using fprintf to print same length values
조회 수: 4 (최근 30일)
이전 댓글 표시
How can I use fprintf to print values with the same length (the number of digits after the pointer is changing based on the number of digits before the pointer)?
0.00000000
30.0000248
360.000305
댓글 수: 0
답변 (2개)
Azzi Abdelmalek
2013년 12월 30일
편집: Azzi Abdelmalek
2013년 12월 30일
b=360.000305
m=9 % fixed length
out=sprintf('%9.9f',b)
ii=numel(strfind(out,'.'))
out=out(1:m+ii)
댓글 수: 8
참고 항목
카테고리
Help Center 및 File Exchange에서 Argument Definitions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!