After using fitdist(___ ,'normal') what do the terms mu and sigma refer to??

3 views (last 30 days)
After using fitdist(___ ,'normal') what do the terms mu and sigma refer to??

Answers (1)

dpb
dpb on 6 Apr 2016
>> x=randn(10,1);
>> n=fitdist(x,'normal')
n =
normal distribution
mu = -0.194848
sigma = 1.14136
>> [mean(x); std(x)]
ans =
-0.1948
1.1414
>>
Parameters of the fitted distribution -- which will be for a RN as shown same as sample mean and standard deviation.

Tags

Community Treasure Hunt

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

Start Hunting!