フィルターのクリア

How to skip an empty value

54 ビュー (過去 30 日間)
Eliska Paulikova
Eliska Paulikova 2023 年 2 月 27 日
コメント済み: Fangjun Jiang 2023 年 2 月 28 日
Hello I work with this data in my program, but if there are empty spots, the program stops itself. I would like to now, how can I say to matlab to ignore these empty values or fill it with the previous value. Thank you so much

採用された回答

Fangjun Jiang
Fangjun Jiang 2023 年 2 月 27 日
You can use isempty(rp) to check, and then ignore as needed.
  9 件のコメント
Eliska Paulikova
Eliska Paulikova 2023 年 2 月 28 日
Thank you so much
Fangjun Jiang
Fangjun Jiang 2023 年 2 月 28 日
In the code, you have this line "rp=radiiBright %v pixelech". It does not have the ";" at the end of line so every time "rp" got calculated, it displays at the Command Window as you showed.
You can add this right after to "skip".
if isempty(rp)
continue
end
The "continue" command will jump the execution to the end of the current loop and start executing the next loop.
This might help you avoid the problem at line
"r=fillmissing(rp + 0./(rp~=0), 'linear', 1)".
But it might also cause problem somewhere else.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by