Plotting Gamma Distribution, please help?
14 ビュー (過去 30 日間)
古いコメントを表示
These are my code, however, i am not getting the plot.
X=1:100; % Duration of data
Data=rand(1,100); % randomly generated 100 years of data
Z=gamfit(Data); % fitting distribution for shape and scale factor
beta=2; % Shape factor
alpha=3; % scale factor
pdf=gampdf(X,alpha,beta); % pdf of the gamma distribution
Plot(pdf,X,'-');
0 件のコメント
回答 (5 件)
Youssef Khmou
2014 年 9 月 22 日
It is correct, you just need to exchange pdf with X :
plot(x,pdf);
2 件のコメント
Youssef Khmou
2014 年 9 月 22 日
the variables alpha and beta are in the system , change theirs names to Alpha, Beta for example.
Benabed Rabia
2018 年 1 月 2 日
編集済み: Benabed Rabia
2018 年 1 月 2 日
When i use plot command the graph just links the dots it does not give a curve, please help me! Thanks in advence
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!