필터 지우기
필터 지우기

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);

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by