Errors for the slope and intercept

7 vues (au cours des 30 derniers jours)
Marisabel Gonzalez
Marisabel Gonzalez le 3 Déc 2018
How can I get the uncertainty for the slope and intercept when using this code
Const = polyfit(log10(x),log10(y), 1);
m = Const(1);
k = Const(2);
b_fit = (10^k) * (x.^m4);

Réponses (2)

Walter Roberson
Walter Roberson le 3 Déc 2018
use the two output form of polyfit and the two output form of polyval
  3 commentaires
Marisabel Gonzalez
Marisabel Gonzalez le 3 Déc 2018
log10 space
Walter Roberson
Walter Roberson le 3 Déc 2018
okay so when you call polyval pass in log10 of the x locations and the second output will reflect that log space .

Connectez-vous pour commenter.


Star Strider
Star Strider le 3 Déc 2018
Consider the File Exchange contribution polyparci (link).

Catégories

En savoir plus sur Interpolation dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by