Asking for laying chicken algorithm source code please help me!

3 ビュー (過去 30 日間)
Dyo Bened
Dyo Bened 2018 年 4 月 19 日
コメント済み: Walter Roberson 2023 年 2 月 22 日
Hello everyone can someone provide me with laying chicken algorithm code implementation? I currently need it for my study. Thank you
  5 件のコメント
Dyo Bened
Dyo Bened 2018 年 4 月 19 日
Thank you Walter . I really appreciate your responses
Walter Roberson
Walter Roberson 2023 年 2 月 22 日
https://pdfs.semanticscholar.org/f032/99a172d474df2ff76590061861079e87d1a6.pdf and researchgate both appear to have copies of the paper these days

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

回答 (1 件)

rahaf hamed
rahaf hamed 2023 年 2 月 22 日
function error = calc_error(t1,y1,t2,y2,norm_order)
% Interpolate y2 to the same time steps as y1
y2_interp = interp1(t2,y2,t1,'spline');
% Calculate the error
error = norm(y1 - y2_interp, norm_order);
end
  1 件のコメント
Walter Roberson
Walter Roberson 2023 年 2 月 22 日
it is not clear how this implements the cited paper?

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

カテゴリ

Help Center および File ExchangeFourier Analysis and Filtering についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by