Gistlib Logo

gistlib

auton uuden akun kesto on eksponenttijakautunut keskiarvolla 14000km. millä todennäköisyydellä uusi akku kestää yli 17500km? in matlab

main.m
mean = 14000;
x = 17500;
lambda = 1/mean;
p = 1 - exp(-lambda*x);
disp(p);
75 chars
6 lines

similar matlab code snippets

how to calculate the normal distribution in matlab
how to calculate the chi-square distribution in matlab
how to calculate the lognormal distribution in matlab
how to calculate the exponential distribution in matlab
how to calculate cumulative distribution function in matlab
how to calculate the gamma distribution in matlab
how to calculate the t distribution in matlab
how to calculate the poisson distribution in matlab
how to calculate normal distribution in matlab
how to calculate the binomial distribution in matlab

related categories

matlab
probability
statistics

gistlibby LogSnag