Plot of Probability Density function in MATLAB
古いコメントを表示
I have time series data.I want to see the plot of PDF.For this, in MATLAB,I have to mention the name of the PDF-type like 'norm'.All PDF types are continuous line.But,I need discrete PDF data points plot.
採用された回答
その他の回答 (3 件)
Keerthivasan Rajamani
2017 年 11 月 2 日
1 投票
Maybe this could be helpful to consider:
histogram(variable_name,'Normalization','probability')
Daniel Shub
2011 年 12 月 8 日
The pdf function can handle binomial, Poisson, and discrete uniform distributions, so not all of them are continuous.
Also are you sure you don't just want to do:
hist(x)
where x is your data?
カテゴリ
ヘルプ センター および File Exchange で Binomial Distribution についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!