how to get mean residual life? (MRL)
    7 views (last 30 days)
  
       Show older comments
    
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 Comments
Answers (0)
See Also
Categories
				Find more on Surface and Mesh Plots in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!