How to generate a random number from a user defined discrete uniform distribution in Matlab ?

조회 수: 7 (최근 30일)
Hi there,
Imagine that I have written the following code in MATLAB.
numItems = 100 ;
Levels = [0.25, 0.5, 0.75, 1.0]
prob = [.25, .25, .25, .25]
% prob can be any set of probability values.
I want to generate a discrete uniform distribution with values Levels for a vector of numItems elements considering the values of prob.
If I simply explain, I need to get something similar to np.random.choice in Numpy.
I tried with unirnd but it is only possible with positive integeres by not floating point numbers.
Can anyone please help me with this ?
Thanks.

채택된 답변

Walter Roberson
Walter Roberson 2020년 5월 17일
randsample() and provide a weights vector.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by