フィルターのクリア

ParmHat not returning shape parameter

3 ビュー (過去 30 日間)
Chaman Srivastava
Chaman Srivastava 2020 年 9 月 8 日
コメント済み: Star Strider 2020 年 9 月 15 日
Hello,
I'm new to MATLAB and statistics, but have been trying to estimate my parameters for a weibull distribution of a set of value. When I run the command parmHat=wblfit(x), it should technically return both scale and shape parameter, but its returning only the former. Why is it so?
My x data= [221447,277196,464274,565756,463453,564535,653655,564354,576124,567234,896453] fro example.
Regards

採用された回答

Star Strider
Star Strider 2020 年 9 月 8 日
It returns both parameters for me (in R2020a, Update 5):
data= [221447,277196,464274,565756,463453,564535,653655,564354,576124,567234,896453];
parmHat = wblfit(data);
Shape = parmHat(1)
Scale = parmHat(2)
producing:
Shape =
588194.482822158
Scale =
3.35979418647355
.
  6 件のコメント
Chaman Srivastava
Chaman Srivastava 2020 年 9 月 15 日
Indeed. Thanks for the help.
Star Strider
Star Strider 2020 年 9 月 15 日
As always, my pleasure!

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

その他の回答 (0 件)

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by