フィルターのクリア

how to delete NaN from a function output

3 ビュー (過去 30 日間)
mcm
mcm 2016 年 10 月 17 日
回答済み: Image Analyst 2016 年 10 月 17 日
I Created a if function that will output a matrix with numeric values and NaN values. What should I add at the end of the function so that it will only display numeric values?

回答 (1 件)

Image Analyst
Image Analyst 2016 年 10 月 17 日
It would be best to remove the nan's from the array before you display it. And you forgot to say what line(s) of code you are using to display it (like fprintf or whatever).
To remove nans from an vector:
vec(isnan(vec)) = [];
vec will now be shorter if there were nans in it.
Unfortunately you can't remove nan's from a matrix because all rows and columns must be the same size -- you can't have "ragged" edges. The best you can do it to replace them with something, like 0 or -1 or whatever.
yourMatrix(isnan(yourMatrix)) = 0;

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by