How to display all decimal numbers for floating numbers?

조회 수: 49 (최근 30일)
Anne Nguyen
Anne Nguyen 2019년 9월 15일
댓글: dpb 2019년 9월 15일
The task I have to perform is take 2 user input numbers that must be floating numbers and add them together. However, when I do this, it cuts off at 4 decimal places. How do I make it so that it displays all decimal numbers? Do I have to use something with %f? I cannot use the "format" command. I am relatively new to MATLab, so any help would be appreciated! Below is what I have so far.

채택된 답변

Bruno Luong
Bruno Luong 2019년 9월 15일
Try this
fprintf('num1+num2 = %1.16g\n',adding_num1_and_num2)
  댓글 수: 2
Anne Nguyen
Anne Nguyen 2019년 9월 15일
Instead of %1.16g", am I allowed to use %f? I am also not allowed to use "g".
Walter Roberson
Walter Roberson 2019년 9월 15일
%f will display 6 digits by default. 6 digits is infinitely short of "all" of the decimal digits.

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

추가 답변 (2개)

Walter Roberson
Walter Roberson 2019년 9월 15일
There are an infinite number of decimal 0's at the end of any floating point number, so it is not possible to make it display all of the decimal numbers.
It looks to me as if you are running MS Windows. The MS Windows internal libraries cannot correctly convert floating point numbers to show all stored decimals like Mac can (and newer versions of Linux can, I hear.)
You will need to use a routine such as num2strexact https://www.mathworks.com/matlabcentral/fileexchange/22239-num2strexact-exact-version-of-num2str to get all of the representable digits.

dpb
dpb 2019년 9월 15일
I'll guess for homework Q? the answer is less esoteric than Walter's take... :)
Yes, if you need more precision than the default display format and the instructor says using the format command to change display mode is not permitted for the assignment, then your supposition of using a formatting string is correct. One supposes the class has recently touched on that topic.
Without giving away the store on writing answer directly, look at one of the following options --
num2str() with an optional formatting string, or
fprintf() using the default 1 for the file ID to echo to the command line (presuming that's where you want the answer to be displayed). A default double has roughly 15 decimal digits of precision; you may have been instructed how many digits to display? Those should give hints on writing/displaying more significant digits...
  댓글 수: 2
Anne Nguyen
Anne Nguyen 2019년 9월 15일
With fprintf, am I supposed to add %f at the end of the statement?
dpb
dpb 2019년 9월 15일
Read the doc...the argument list is fileID, fmtString, outputlist

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

카테고리

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