How to combine PLOT the output from Density Estimation and Gaussian Function
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear coder,
Im interested to plot the output from KSDENSITY as shown below
Using the code from this site, I manage to get the blue and black line. However, I unable to plot the red Gaussian curve. I really appreciate, if someone can show some info on how to solve this problem.
The code
randn('seed',1)
x = [randn(3,1); 3+.5*randn(3,1)];
ksdensity(x)
hold on; h=stem(x,0.01*ones(size(x)),'filled'); hold off
Thanks in advance
0 commentaires
Réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!