How to evaluate a ksdensity at x-values?
Afficher commentaires plus anciens
I try to evaluate my fitting of a kernel density estimate over a range of x-values. Is there a way to call the function directly?
My problem is that my fitting given by ksdensity is a vector (pdfKernel 1x10000 double), not a function.
Thank you for your help.
Réponses (1)
Wayne King
le 26 Nov 2013
Modifié(e) : Wayne King
le 26 Nov 2013
You can input a vector of values as the 2nd input argument to ksdensity()
xi = -3:.01:3;
y = randn(1000,1);
[F,XI] = ksdensity(y,xi);
Catégories
En savoir plus sur Exploration and Visualization dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!