Removing invalid results knowing the trend

1 回表示 (過去 30 日間)
marco esteves
marco esteves 2019 年 8 月 22 日
コメント済み: Adam Danz 2019 年 8 月 23 日
Hello,
I have a matrix, which is an output from angle measurement from a motor. So, over time the angle increases over time until it reaches a maximum (360 i.e) and then stops or descreases.
. For instance:
[0 10 -1 40 50 0 60 10 90 0 ]
How can I remove the invalid values, that in that example are the -1 , second and third '0's and the second 10 ?
Thank you
  2 件のコメント
the cyclist
the cyclist 2019 年 8 月 22 日
What is the general rule for "invalid"?
Adam Danz
Adam Danz 2019 年 8 月 22 日
編集済み: Adam Danz 2019 年 8 月 22 日
Your rule should produce a logical vector where True indicates data that should be removed and False indicates data that should be retained. Then you have 2 options.
data(idx) = NaN; % replace the unwanted values with NaN
% or
data(idx) = []; %remove the unwanted values.
The benefit of the first method is that the index of each data point within the vector is retained. So data(4) will always be 40 before and after you replace the unwanted data.

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

採用された回答

Ted Shultz
Ted Shultz 2019 年 8 月 22 日
編集済み: Ted Shultz 2019 年 8 月 22 日
From what you say, it sounds like your valid rule is that if the reported angle is invalid if it is less than the previous value.
A simple slow way to test for this is:
ang = [0 10 -1 40 50 0 60 10 90 0 ];
% find ang(n) < ang(n-1) and remove
for ii = numel(ang):-1:2
if ang(ii) < ang(ii-1)
ang(ii) = [];
end
end
disp(ang)
output: 0 10 40 50 60 90
  3 件のコメント
marco esteves
marco esteves 2019 年 8 月 23 日
編集済み: marco esteves 2019 年 8 月 23 日
I think this the most elegant choice. thank you!
@adam is it possible to save the indexes of the nonvalid values ?
Adam Danz
Adam Danz 2019 年 8 月 23 日
Sure. The indices are computed with in the square brackets above. It assumes the first value is never a nonvalid value. Any following value is nonvalid if it's less than the previous value as Ted explained.
[false,diff(ang)<=0]

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio I/O and Waveform Generation についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by