www.gusucode.com > stats 源码程序 matlab案例代码 > stats/CreateanInverseGaussianDistributionObjectUsingSpecifiedPExample.m

    %% Create an Inverse Gaussian Distribution Object Using Specified Parameters  

%% 
% Create an inverse Gaussian distribution object by specifying parameter
% values. 
pd = makedist('InverseGaussian','mu',2,'lambda',4)  

%% 
% Compute the standard deviation of the distribution. 
s = std(pd)