Azzera filtri
Azzera filtri

What is the default decimal precision in Matlab?

8 visualizzazioni (ultimi 30 giorni)
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 Commento
JFz
JFz il 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

Accedi per commentare.

Risposta accettata

Star Strider
Star Strider il 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 Commenti
JFz
JFz il 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 il 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.

Accedi per commentare.

Più risposte (0)

Tag

Non è stata ancora inserito alcun tag.

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by