Borrar filtros
Borrar filtros

How do I use MatLab to find a line of best fit with a predetermined y intercept using regression.

21 visualizaciones (últimos 30 días)
I have data on changes in cardiac output with temperature changes from several studies. This data is expressed as CO at Tn / CO at T0, so at baseline temperature the result = 1. I want to find a line of best fit for this data, but the y intercept must be 1 for it to make sense.
How do I use Matlab find a line of best fit with least squares regression for this data, with the y intercept constrained to 1? It is easily done with Microsoft Excel, but I am trying to become more familiar with stats on Matlab.

Respuesta aceptada

Star Strider
Star Strider el 18 de Dic. de 2022
Perhaps —
x = 0:250;
y = randn(size(x));
B0 = x(:) \ (y(:)-1)
B0 = -0.0054
fitline = x(:) * B0 + 1;
figure
plot(x, y, '.')
hold on
plot(x, fitline, '-r')
hold off
grid
.
  7 comentarios
Chris Joyce
Chris Joyce el 18 de Dic. de 2022
It works perfectly, giving me exactly the same answers as EXCEL.
Thanks again
Star Strider
Star Strider el 18 de Dic. de 2022
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by