How can I plot the multiple probability plot for weibull distribution with same shape parameter, but different scale parameter?

조회 수: 14 (최근 30일)
Hi, I am wondering how can I plot the multiple weibull data into one big probability plot
to show that each data have weibull distribution with same shape parameter, but different scale?
suppose
A = wblrnd(1/2 1/2 [1 5]
B = wblrnd(5 1/2 [1 5])
and use probplot or wblplot command to show that this two data have similar distribution.
picture is one of examples from the minitab, and i am trying to show the similar things.
Thank you

채택된 답변

Birdman
Birdman 2017년 11월 2일
wblplot(A);hold on;grid on;wblplot(B)
Use hold on command.
  댓글 수: 2
ChinUk
ChinUk 2017년 11월 2일
편집: ChinUk 2017년 11월 2일
Thank you for your answer, but the problem is that using this command also shows estimated line with different shape parameter like below image
. Is anyway that shows that same estimated line like minitab example i showed?
Birdman
Birdman 2017년 11월 2일
Well, I can only modify the code to the following:
wblplot(A);hold on;grid on;wblplot(B);legend('A(scale=0.5)','B(scale=5)')

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

추가 답변 (1개)

Daniil Khakhulin
Daniil Khakhulin 2021년 12월 2일
Try using
probplot (y);
instead of multiple wblplots
It would look something like that
probplot ('weibull', [A B]);

카테고리

Help CenterFile Exchange에서 베이불(Weibull) 분포에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!