Filtering a very noisy plot

1 回表示 (過去 30 日間)
Christian Tsobanoglou
Christian Tsobanoglou 2021 年 2 月 16 日
回答済み: Dongyue 2022 年 11 月 18 日
Hello! I am trying to apply a filter to filter the following force plot. I have tried many like lowpass but I haven't got any to work because I am just not good at matlab. Do you have an idea about how to do it. Maybe I should do a curve that follows the tops of the plot?

回答 (1 件)

Dongyue
Dongyue 2022 年 11 月 18 日
Hi Christian,
A simple example to create a lowpass filter is shown below. Hope this will be helpful:
signal_original = rand([1,1000]);
plot(signal_original)
hold on
signal_lowpass = signal_original;
signal_lowpass(signal_lowpass>0.5) = 0.5;
plot(signal_lowpass)
hold off
Best,
Dongyue

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by