フィルターのクリア

The problem of constants in linear least squares

1 回表示 (過去 30 日間)
Jiapeng
Jiapeng 2022 年 11 月 10 日
コメント済み: Walter Roberson 2022 年 11 月 10 日
The equation of the model is ay^2+bxy+cx+dy+e=x^2.
Since e is a constant not associated with any variable, how should we get the value of e?
x = [1.02; 0.95; 0.77; 0.67; 0.56; 0.30; 0.16; 0.01];
y = [0.39; 0.32; 0.22; 0.18; 0.15; 0.12; 0.13; 0.15];

採用された回答

Star Strider
Star Strider 2022 年 11 月 10 日
編集済み: Walter Roberson 2022 年 11 月 10 日
since it is a constant, e becomes a vector of ones
x = [1.02; 0.95; 0.77; 0.67; 0.56; 0.30; 0.16; 0.01];
y = [0.39; 0.32; 0.22; 0.18; 0.15; 0.12; 0.13; 0.15];
B = [y.^2 x.*y x y ones(size(x))] \ x.^2;
fprintf('\na = %10.6f\nb = %10.6f\nc = %10.6f\nd = %10.6f\ne = %10.6f\n',B)
a = -2.876811 b = 0.223246 c = 0.538057 d = 3.276223 e = -0.435324
.
  1 件のコメント
Walter Roberson
Walter Roberson 2022 年 11 月 10 日
("becomes a vector of ones" for the purpose of doing fitting using the Vandermode-type matrix and the \ operator)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOperating on Diagonal Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by