Calculating and Plotting Weibull Distribution Function(wblpdf) with Cell Arrays
이전 댓글 표시
Hi, so I calculated weibull parameters for my cell array using this, where speedMsAWPcells is a set of 12 arrays.
weibullAWPcells = cellfun(@(C) wblfit(C), speedMsAWPcells, 'uniform', 0);
The output was the pairs of parameters as shown:

I would like to know how to apply the sets of weibull parameters to the weibull probability density function (wblpdf()) to calculate the individual wblpdf for each set of parameters in the cell array.
The range I am plotting the wblpdf for is as follows
X=0:0.5:27;
wblpdf(X,c,k);
% Where c = scale parameter, k = shape parameter
Lastly, I would like to know if there is some way to plot all of these wblpdfs against each other in the same plot without extracting them and then plotting them against each other, one at a time using hold on, hold off...
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Weibull Distribution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!