Using fit function ignoring NaN

102 ビュー (過去 30 日間)
Paola
Paola 2022 年 3 月 17 日
コメント済み: Paola 2022 年 3 月 20 日
Hi,
how can I use the fit function ignoring the NaN values in my y vector?
Thanks
  1 件のコメント
Torsten
Torsten 2022 年 3 月 17 日
By removing them before calling the fit function.

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

採用された回答

Matt J
Matt J 2022 年 3 月 17 日
include=~isnan(y);
fobj = fit(x(include),y(include),fitType)
  1 件のコメント
Paola
Paola 2022 年 3 月 20 日
Thanks! it worked

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCurve Fitting Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by