任何人都可以提供简单的核密度估计的 MATLAB 例程吗?
我正在尝试从基础开始学习核密度估计。任何拥有 1d KDE 简单例程的人都会非常有帮助。谢谢。
I am trying to learn the kernel density estimation from the basic. Anyone have the simple routine for 1d KDE would be great helpful. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 MATLAB 中有统计工具箱,则可以使用
ksdensis< /code>
使用内核平滑估计 pdf/cdf。这是一个例子
如果你绘制它,它应该看起来像这样
您还可以获得累积分布或逆累积或更改所使用的内核。您可以从提供的链接查找选项列表。这应该可以帮助您入门:)
If you have the statistics toolbox in MATLAB, you can use the
ksdensity
to estimate pdf/cdf using kernel smoothing. Here's an exampleIf you plot it, it should look like this
You can also get the cumulative distribution or the inverse cumulative or change the kernel that is used. You can look up the list of options from the link provided. This should help you get started :)