what is properly method to optimization of four parameter to be one value?

2 ビュー (過去 30 日間)
AniCnx
AniCnx 2017 年 11 月 14 日
コメント済み: AniCnx 2017 年 11 月 24 日
Hello all. I have 4 parameters for 4 equations that I just want to optimize those parameter to one value to be used for these 4 equation. Is there method for this task? ex. Y1=aX1; Y2=bX2; Y3=cX3; Y4=dX4 and want to optimize these a,b,c,d to be A for this equation.

採用された回答

Torsten
Torsten 2017 年 11 月 14 日
So you have four data points (X1,Y1), (X2,Y2), (X3,Y3), (X4,Y4) and you want to find the "best" A such that
[Y1 Y2 Y3 Y4] = A*[X1 X2 X3 X4]
?
If this is the case,
A = (X1*Y1+X2*Y2+X3*Y3+X4*Y4)/(X1^2+X2^2+X3^2+X4^2)
Best wishes
Torsten.
  1 件のコメント
AniCnx
AniCnx 2017 年 11 月 24 日
Thank you very much, Torsten. I will test for this.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNonlinear Optimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by