[probability help]probability of a certain number and a range of certain numbers

1 view (last 30 days)
How can I find the probability of a certain number and a range of certain numbers at M? M = randi([5,18],1000);

Answers (1)

Chad Greene
Chad Greene on 28 Oct 2014
In this distribution, it looks like about 21% of the values are in the range of 6 to 8, inclusive:
M = randi([5,18],1000);
100*sum(M(:)>=6&M(:)<=8)/numel(M)

Community Treasure Hunt

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

Start Hunting!