How to draw a random number from Cauchy Distribution with a particular mean and standard deviation?
26 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Md. Asadujjaman
el 15 de Ag. de 2021
Comentada: Md. Asadujjaman
el 16 de Ag. de 2021
We can generate a random number from the normal distribution with mean parameter mu and standard deviation parameter sigma using normrnd(mu,sigma). However, how can we generate a random number from the Cauchy distribution using specific mu and sigma;, e.g., mu=0.5 and sigma=0.1?
0 comentarios
Respuesta aceptada
Chunru
el 15 de Ag. de 2021
Editada: Chunru
el 15 de Ag. de 2021
Using the fact that Cauchy distribution is the Student's t distribution with dof=1.
mu =4e5; sigma = 20;
r = mu+sigma*trnd(1, 100000, 1); % mu, signam: location and scale parameters (not mean and std)
hist(r, 1000);
Más respuestas (1)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!