ksdensity function for pdf estimation
4 ビュー (過去 30 日間)
古いコメントを表示
i feed some data to ksdensity but i got a gaussian pdf with peak greater than 1 how is that
0 件のコメント
回答 (2 件)
David Sanchez
2014 年 5 月 14 日
As you can see in the ksdensity documentation, depending n how you use the function, there is nothing abnormal with your result:
From documentation: Generate a mixture of two normal distributions, and plot the estimated inverse cumulative distribution function at a specified set of values:
x = [randn(30,1); 5+randn(30,1)];
yi = linspace(.01,.99,99);
g = ksdensity(x,yi,'function','icdf');
plot(yi,g);
Paste the code you are using in order to provide a good solution to your question.
参考
カテゴリ
Help Center および File Exchange で Wireless Communications についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!