How to generate probability value randomly?

Hello,
I have a set of discrete value
X=[1 , 2, 10, 5, ...., 4]
I want each value in X contains a probability value between 0 and 1
example:
1: 0.5,
2:0.1,
5:0.9
.....
Thanks.

 Accepted Answer

Try this
X = [1 , 2, 10, 5, 4];
prob = rand(size(X))

2 Comments

Thank you very much, it works.
I am glad to be of help!

Sign in to comment.

More Answers (0)

Categories

Products

Release

R2017a

Asked:

on 26 Oct 2020

Commented:

on 26 Oct 2020

Community Treasure Hunt

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

Start Hunting!