필터 지우기
필터 지우기

Displaying a value using fprintf with certain number of decimals.

조회 수: 1 (최근 30일)
I am trying to display the value of a using fprintf with only two decimals. Given a = 3.870081e+01;
Can you modify my code below to only display two decimals?
fprintf('The answer for a is %d m/s\n', a)
Thanks,

채택된 답변

Walter Roberson
Walter Roberson 2021년 3월 5일
format long g
a = rand*10
a =
5.92737493941911
fprintf('The answer for a is %.2f m/s\n', a)
The answer for a is 5.93 m/s

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by