Filter löschen
Filter löschen

What is the default decimal precision in Matlab?

8 Ansichten (letzte 30 Tage)
JFz
JFz am 13 Nov. 2015
Kommentiert: Star Strider am 13 Nov. 2015
I am using polyfit to derive the coefficients. What is the default decimal precision in this case and for the function polyfit?
Thanks,
Jennifer
  1 Kommentar
JFz
JFz am 13 Nov. 2015
Thanks for your help. I was testing a polynomial simulation. I set the polynomial to be: y = 1+2x+3x^2+4x^3+5x^4+6x^5 and generated 1000 points. Then I used polyfit(Test1_regressor{:,1}, Test1_points{:,1}, 5); the results are: 5.993278257 5.015586479 3.987602572 3.00393415 1.999564018 1.000009082 But I expected the results should be closer to 6, 5, 4, 3, 2, 1 I wonder how to improve the precision.
Thanks. Jennifer

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Star Strider
Star Strider am 13 Nov. 2015
All such calculations in MATLAB are full double-precision floating point. The decimal precision displayed in the Command Window and tooltips is set by the format function.
  2 Kommentare
JFz
JFz am 13 Nov. 2015
Thanks for your help. I was testing a polynomial simulation. I set the polynomial to be: y = 1+2x+3x^2+4x^3+5x^4+6x^5 and generated 1000 points. Then I used polyfit(Test1_regressor{:,1}, Test1_points{:,1}, 5); the results are: 5.993278257 5.015586479 3.987602572 3.00393415 1.999564018 1.000009082 But I expected the results should be closer to 6, 5, 4, 3, 2, 1 I wonder how to improve the precision.
Thanks. Jennifer
Star Strider
Star Strider am 13 Nov. 2015
My pleasure.
There was a recent discussion on this very topic: Failure in a simple division. You are likely dealing with floating-point approximation error that in this instance is also likely due to the propagation of such errors through many calculations. It is inherent in binary calculations, and there is no escaping it. Some calculations that involve only integers will not have floating-point conversion error, but most calculations will.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Noch keine Tags eingegeben.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by