フィルターのクリア

Plotting the inverse Gaussian distribution

12 ビュー (過去 30 日間)
Abas Arkawazi
Abas Arkawazi 2020 年 1 月 5 日
コメント済み: Abas Arkawazi 2020 年 1 月 6 日
How to plot the inverse Gaussian distribution with different values of its parameter??? please help me I need it.
Thanks
Abbas

採用された回答

David Hill
David Hill 2020 年 1 月 5 日
pf=makedist('InverseGuaussian','mu',1,'lambda',1);%establish whatever you want for mu and lambda
x=0:.001:2;%establish whatever values you want evaluated
y=pdf(pf,x);
plot(x,y);
  1 件のコメント
Abas Arkawazi
Abas Arkawazi 2020 年 1 月 6 日
Thank you very much

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by