How to remove Noise using histogram In Matlab

5 ビュー (過去 30 日間)
Stephen john
Stephen john 2022 年 8 月 28 日
コメント済み: Stephen john 2022 年 8 月 29 日
Hello Everyone, i hope you are doing well. I have the following data in which I have some noise. I want to remove the Noise using Histogram or any other Method. I have attached the picture below which is the noise.
How can i do that?

回答 (1 件)

Abderrahim. B
Abderrahim. B 2022 年 8 月 28 日
Hi!
Below is a workflow based on groupcounts function:
clear
load noisydata.mat
figure
subplot(211)
plot(dataset, 'o')
title("noisy data")
% Filtering based groupcounts
[GC, GR] = groupcounts(dataset) ;
denoisedData = dataset(ismember(dataset, GR(GC>10))) ; % group that has count less than 10 will be removed
subplot(212)
plot(denoisedData, 'o')
title("denoised data")
Hope this helps
  14 件のコメント
Abderrahim. B
Abderrahim. B 2022 年 8 月 29 日
I understand, try other filtering methods. This method - based find groups count requires to set a threshold for filtering.
Stephen john
Stephen john 2022 年 8 月 29 日
@Issa Can you help me with this using Histogram?

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

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by