Borrar filtros
Borrar filtros

How to plot the confidence interval of a weibull plot?

9 visualizaciones (últimos 30 días)
alsa
alsa el 8 de Mzo. de 2018
Comentada: Felix Hoffmann el 16 de Abr. de 2020
I plotted a Weibull distribution and estimated its parameters, how do I also plot the confidence interval?
wblplot(breakdowntime);
xlabel('Breakdown Time (hours)', 'fontsize', 14);
ylabel('Cumulative Percentage Failure (%)', 'fontsize', 14);
title('Weibull DIstribution of SiC MOS-Capacitor Failure', 'fontsize', 14);
lgd=legend('10 MV/cm', '9.7 MV/cm', '9.4 MV/cm','9.1 MV/cm', '8.6 MV/cm', '8.3 MV/cm', '8.0 MV/cm', 'Location', 'southeast');
%Estimate the parameters of weibull distribution
[p10, ci10]=wblfit(T10,0.05);
[p9_7, ci9_7]=wblfit(T9_7,0.05);
[p9_4, ci9_4]=wblfit(T9_4,0.05);
[p9_1, ci9_1]=wblfit(T9_1,0.05);
[p8_6, ci8_6]=wblfit(T8_6,0.05);
[p8_3, ci8_3]=wblfit(T8_3,0.05);
[p8_0, ci8_0]=wblfit(T8_0,0.05);

Respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by