How to extract 3 Weibull parameters obtained using method of moments

조회 수: 7 (최근 30일)
Chish
Chish 2023년 10월 6일
댓글: Chish 2023년 10월 7일
I am estimating 3 Weibull parameters using different methods. Following posts on this site, I have just istalled Cupid and it is working well. I have followed this example: solve 3 parameter weibull using method of moments - integral with parameters inside a solve - MATLAB Answers - MATLAB Central (mathworks.com). I am getting answers which i think are correct. My challenge is to extract the the parameter values so that i use them in the next equation. I have attached the mat file that i am using. Here is my code:
clc; close all; clear
load('matlab.mat');
xbar = mean(Speed)
xvar = var(Speed)
cenmom3 = mean( (Speed-xbar).^3 ) % Cupid moment estimation uses the 3rd central moment
weib = Weibull(2,2,1); % Just guess some starting parameter values
weib.EstMom([xbar, xvar, cenmom3]) % This is the command for moment estimation
weib.Mean % Check the mean, variance, and 3rd moment with the estimated parameter values.
weib.Variance % These should match the values computed from data.
weib.CenMoment(3)
Please explain how to extract the parameter values.
  댓글 수: 1
Torsten
Torsten 2023년 10월 6일
편집: Torsten 2023년 10월 6일
No Cupid documentation available ? Then you should consult the author's of the Toolbox.

댓글을 달려면 로그인하십시오.

채택된 답변

Jeff Miller
Jeff Miller 2023년 10월 6일
parms = weib.ParmValues; % this function reports back the current parameter values of the weib distribution.

추가 답변 (0개)

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by