how to get mean residual life? (MRL)
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a code for reliability.
clc; clear;
tt=200; b=10; sigma1=2; i=1;
for t = 1 : 1 : tt; mu=b*t; sigma=sigma1*t; P = normcdf(1000,mu,sigma); v(i)=P;
i=i+1;
end
plot(v) title(' Probability of reliability'); xlabel('Time (months)'); ylabel('Reliability graph');
Now I need to get mean residual life according to this reliability.
Is there any matlab function that does this?
0 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!