필터 지우기
필터 지우기

How to draw random number from a Cauchy Distribution

조회 수: 9 (최근 30일)
Atinesh Singh
Atinesh Singh 2017년 4월 17일
답변: Roger Stafford 2017년 4월 17일
I know random number can be drawn from a Normal Distribution as follows
normrnd(mu, sd)
where mu=mean and sd=standard deviation
But how can we draw a random number from Cauchy Distribution with given mu (location parameter) and sigma (scale parameter) as there is no built-in function available. For more information about Cauchy Distribution see this

채택된 답변

Roger Stafford
Roger Stafford 2017년 4월 17일
To generate N random values of x with a Cauchy distribution where b is the half width at the half maximum density level and m is the statistical median:
x = m+b*tan(pi*(rand(N,1)-1/2));
See
http://mathworld.wolfram.com/CauchyDistribution.html

추가 답변 (0개)

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by