Weird fitting result from using 'ksdensity'

7 vues (au cours des 30 derniers jours)
Yiran Chang
Yiran Chang le 10 Fév 2021
Commenté : Yiran Chang le 12 Fév 2021
I have a histogram of frequency distribution (pic 1), theoretical there could be more than one peak, so I used ksdensity for fitting. But I got a reallly weird fitting.(pic 2)
code I used:
figure
x = [Tracks.norm_amp];
histogram(x,'Normalization','probability')
[f,xi] = ksdensity(x,'kernel','normal','support','positive');
hold on
plot(xi,f)
It wil be great if someone can help me! Thanks a lot!

Réponse acceptée

Jeff Miller
Jeff Miller le 11 Fév 2021
Try
histogram(x,'Normalization','pdf')
  1 commentaire
Yiran Chang
Yiran Chang le 12 Fév 2021
Worked! I really appreciate your help!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by