adding trailing 0s to inputted numbers

조회 수: 39 (최근 30일)
Paige Berrigan
Paige Berrigan 2022년 9월 19일
답변: Eric Delgado 2022년 9월 19일
Is there a way to add trailing 0s after they are inputted in MATLAB (ex turning 4 -> 4.0 or 4.00?) my code wont work unless the sigfigs match but i found rounding them in the matrix using M = round(M,4,"decimals") or M = round(M,4,"significant") just keeps it at the same integer value.
Thank you!
  댓글 수: 1
Matt J
Matt J 2022년 9월 19일
편집: Matt J 2022년 9월 19일
The number of trailing zeros displayed in the command window is unrelated to how much precision M actually has. We need a more full description (with code) of the problem you are encountering.

댓글을 달려면 로그인하십시오.

답변 (1개)

Eric Delgado
Eric Delgado 2022년 9월 19일
You have to use strings to control the number of decimals.
sprintf('%.1f', 4)
ans = '4.0'
sprintf('%.2f', 4)
ans = '4.00'
sprintf('%.6f', 4)
ans = '4.000000'

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by