Clear Filters
Clear Filters

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

22 views (last 30 days)
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.

Accepted Answer

Star Strider
Star Strider on 18 Dec 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 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Descriptive Statistics in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!