Errors for the slope and intercept

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);

Respuestas (2)

Walter Roberson
Walter Roberson el 3 de Dic. de 2018

0 votos

use the two output form of polyfit and the two output form of polyval

3 comentarios

Walter Roberson
Walter Roberson el 3 de Dic. de 2018
is the error to be estimated in log10 space or original space ?
Marisabel Gonzalez
Marisabel Gonzalez el 3 de Dic. de 2018
log10 space
Walter Roberson
Walter Roberson el 3 de Dic. de 2018
okay so when you call polyval pass in log10 of the x locations and the second output will reflect that log space .

Iniciar sesión para comentar.

Star Strider
Star Strider el 3 de Dic. de 2018

0 votos

Consider the File Exchange contribution polyparci (link).

Categorías

Más información sobre Get Started with Curve Fitting Toolbox en Centro de ayuda y File Exchange.

Productos

Versión

R2018b

Preguntada:

el 3 de Dic. de 2018

Respondida:

el 3 de Dic. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by