Replace missing elements in an array with NaN

3 ビュー (過去 30 日間)
Anantha Padmanabhan
Anantha Padmanabhan 2016 年 10 月 4 日
編集済み: Thorsten 2016 年 10 月 4 日
Hello! for i=1:n
scanindex = round((i-1)*pointsperscan+1):round(i*pointsperscan);
filterindex == (i-1)*pointsperscan+find(vlos(scanindex)<=blade_flicker_threshold&...
quality(scanindex)>=quality_range(1)&...
quality(scanindex)<=quality_range(2)&...
power(scanindex)>=power_range(1)&...
power(scanindex)<=power_range(2))';
So i have this code. Scan index reads the entire second values with 312 entries and the filterindex filters based on the scan parameters which results in an array less than 312 entries. I want to keep the size of the filterindex same as the scanindex as I need to rewrite the code for more general purposes and so I was thinking if there was a way to replace the indeces which do not match the filter parameters with NaN values. So the output should read that the size of scanindex and the filterindex are the same!
Thanks

採用された回答

Thorsten
Thorsten 2016 年 10 月 4 日
You can add the needed number of NaNs to the filterindex;
filterindex(end+1:numel(scanindex) = NaN;
  2 件のコメント
Anantha Padmanabhan
Anantha Padmanabhan 2016 年 10 月 4 日
Hey, What you say will just add NaNs to the end of the filterindex. I want to have NaNs in the particular index in the filterindex when compared to the scan index. So if scanindex(25) does not satisfy the conditions specified, filterindex(25) must be a NaN.
Thorsten
Thorsten 2016 年 10 月 4 日
編集済み: Thorsten 2016 年 10 月 4 日
I see. I think that you can use logical indexing to solve your problem:
filterindex = nan(size(scanindex));
fi = (i-1)*pointsperscan+find(vlos(scanindex)<=blade_flicker_threshold&...
quality(scanindex)>=quality_range(1)&...
quality(scanindex)<=quality_range(2)&...
power(scanindex)>=power_range(1)&...
power(scanindex)<=power_range(2))';
filterindex(fi) = true;

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

その他の回答 (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