フィルターのクリア

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

22 ビュー (過去 30 日間)
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.

採用された回答

Star Strider
Star Strider 2022 年 12 月 18 日
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 件のコメント
Chris Joyce
Chris Joyce 2022 年 12 月 18 日
It works perfectly, giving me exactly the same answers as EXCEL.
Thanks again
Star Strider
Star Strider 2022 年 12 月 18 日
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by