フィルターのクリア

matlab polyfit multiple sets of y data

6 ビュー (過去 30 日間)
peter huang
peter huang 2023 年 3 月 16 日
編集済み: Dyuman Joshi 2023 年 3 月 16 日
If I have multiple sets of data (y) under the same x condition, how can I polyfit a fitting line representing these data
If I have multiple y data, how can I use polyfit to get a fitting line about the two y data or what method should I use to get a line representing the two data
x = [1; 2; 3; 4; 5];
%%
y1 = [10; 20; 30; 40; 50];
y2 = [15; 25; 35; 45; 55];
  1 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 3 月 16 日
編集済み: Dyuman Joshi 2023 年 3 月 16 日
How do you get y1, y2, ...? Are they output from some code or are you manual inputting them?
Dynamically naming variables is not a good idea - Why Variables Should Not Be Named Dynamically

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

回答 (1 件)

KSSV
KSSV 2023 年 3 月 16 日
Run a loop for each set.....
Let y be your mxn data and x be your 1xn data.
p = cell(m,1) ;
for i = 1:m
p{i} = polyfut(x,y(i,:),2) ;
end
  1 件のコメント
peter huang
peter huang 2023 年 3 月 16 日
If I have multiple y data, how can I use polyfit to get a fitting line about the two y data or what method should I use to get a line representing the two data

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

カテゴリ

Help Center および File ExchangeGet Started with Curve Fitting Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by