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

9 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Birdman
Birdman am 2 Nov. 2017
wblplot(A);hold on;grid on;wblplot(B)
Use hold on command.
  2 Kommentare
ChinUk
ChinUk am 2 Nov. 2017
Bearbeitet: ChinUk am 2 Nov. 2017
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 am 2 Nov. 2017
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)')

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

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

Community Treasure Hunt

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

Start Hunting!