convert array that has NAN to 0

1 回表示 (過去 30 日間)
sri satya ravi
sri satya ravi 2022 年 8 月 12 日
コメント済み: sri satya ravi 2022 年 8 月 12 日
I am having an array of length 1669965*1 double. There are some NAN's in it which are intermixed with the required data.
I am trying the convert NAN's to 0 without changing the length of the array.
Charge_P = Charge_P(isnan(Charge_P))=0;
I am getting an error saying i have to use '==' but if i use it it is modifying the length of my array.

採用された回答

Cris LaPierre
Cris LaPierre 2022 年 8 月 12 日
You can't have two assignment operators (the equals sign) in a single command. I think you just want this
Charge_P(isnan(Charge_P))=0;
You might also be insterested in the fillmissing function.
Charge_P = fillmissing(Charge_P,'constant',0)
  1 件のコメント
sri satya ravi
sri satya ravi 2022 年 8 月 12 日
Thank you.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by