how to increse no digits after decimal point?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
rajesh kumar
am 1 Sep. 2018
Bearbeitet: Stephen23
am 4 Sep. 2018
in matlab coding i am getting ans =0.0012 i want to getting ans =0.001234903423 what to do please suggest me
1 Kommentar
Akzeptierte Antwort
KALYAN ACHARJYA
am 1 Sep. 2018
Bearbeitet: KALYAN ACHARJYA
am 1 Sep. 2018
fprintf('%.12f', ans) %Upto 12 floating points, you can change the value range
3 Kommentare
Stephen23
am 4 Sep. 2018
Bearbeitet: Stephen23
am 4 Sep. 2018
"Upto 12 floating points"
Why 12? Where does this limit come from? I don't see this limit mentioned anywhere in the fprintf help, nor is it related to the precisions of either double or single floating point numbers:
When I try 15 decimal digits, it works just fine:
>> X = 0.123456789012345;
>> fprintf('%.15f\n',X)
0.123456789012345
Where did you get this "Upto 12 floating points" limit from?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!