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
댓글 수: 0
채택된 답변
추가 답변 (1개)
Daniil Khakhulin
2021년 12월 2일
Try using
probplot (y);
instead of multiple wblplots
It would look something like that
probplot ('weibull', [A B]);
Fro further info refer to https://www.mathworks.com/help/stats/probplot.html?s_tid=srchtitle_probplot_1
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 베이불(Weibull) 분포에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!