Simulate outage probability or CDF
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mutah
el 26 de Dic. de 2013
Comentada: Slaheddine Welhazi
el 30 de Abr. de 2022
Hi all
I have the CDF (cumulative distribution function) for my function
I want to make simulation for this CDF ? not plot it?
How can i do this ?
1 comentario
Slaheddine Welhazi
el 30 de Abr. de 2022
I want to simulate SOP for differents value of density (poisson point process)
Respuesta aceptada
Roger Stafford
el 26 de Dic. de 2013
One commonly-used method involves matlab's 'rand' function and the inverse of the cdf function. Let p = F(c) be the cumulative distribution function, that is the probability p that a given random variable, r, is less than or equal to c. Let c = G(p) be its inverse function. Then the following simulates n sequential values of that random variable:
r = G(rand(n,1));
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!