How to exclude data based on quality control flags

1 回表示 (過去 30 日間)
Addie
Addie 2019 年 10 月 15 日
編集済み: Adam Danz 2019 年 10 月 16 日
Hi,
I have a data set where each value has a quality control flag associated with it. What would be the most effecient way for me to exclude and include values based on QC value?
  2 件のコメント
Adam Danz
Adam Danz 2019 年 10 月 15 日
編集済み: Adam Danz 2019 年 10 月 16 日
There's not enough detail in your question. Let's assume you have a vector of data "x" and a vector of QC values "qc". I assume the qc values are numeric or logical.
If they are logical and 'true' means "keep",
x(qc) %this eliminates any of the bad data
% or
x(qc) = NaN; % This replaces any of the bad data with "missing" data
The benefit of the 2nd line above is that the size and index values of 'x' do not change.
If your qc values are numeric and range from j to i, you can set a threshold 't' where any qc values greater than t are accepted.
xAccepted = x(qc > t);
% or
x(qc <= t) = NaN;
Addie
Addie 2019 年 10 月 16 日
Apologies for the lack of detail. x(qc <= t) = NaN; is a great solution. Thank you Adam Danz!

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

回答 (0 件)

カテゴリ

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

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by