How to remove Noise using histogram In Matlab
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1109970/image.jpeg)
0 Commenti
Risposte (1)
Abderrahim. B
il 28 Ago 2022
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 Commenti
Abderrahim. B
il 29 Ago 2022
I understand, try other filtering methods. This method - based find groups count requires to set a threshold for filtering.
Vedere anche
Categorie
Scopri di più su Data Distribution Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!