フィルターのクリア

Finding a Signal from an noisy signal

3 ビュー (過去 30 日間)
Rohan  Mehta
Rohan Mehta 2019 年 9 月 2 日
コメント済み: Image Analyst 2019 年 9 月 3 日
I am having an signal as displayed in the image the red signal is the input and the blue one is outut as we can see that we have six peaks obtained in the input (Red) signal and the same should be present in the output (Blue) signal. I want to find the the signals in the blue samples. Is there any kind of filter or code which I can apply to find the signals.
Please note that signals attached in the image are created using an CSV file which contains the amplitudes of the signals.

採用された回答

Image Analyst
Image Analyst 2019 年 9 月 2 日
Simply use masking:
mask = redSignal > 0.1; % Logical index (mask) of where the red signal is higher than 0.1.
% Now replace those bad red signal locations with the good blue signal:
redSignal(mask) = blueSignal(mask);
  2 件のコメント
Rohan  Mehta
Rohan Mehta 2019 年 9 月 3 日
編集済み: Rohan Mehta 2019 年 9 月 3 日
Can you just explain what this masking of signals does ?
Image Analyst
Image Analyst 2019 年 9 月 3 日
Not sure what additional I can say. The green comment above say it all. The mask is where the red signal is higher than 0.1 (bad signal locations/indexes). And then I replace those bad red signal locations with the values from the good blue signal. Read it again and tell me where you see some ambiguity or uncertainty in what it says.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAuthor Block Masks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by