how to draw random numbers from the vector
Show older comments
Hi, i have drawn a distribution based on on the generated vector of random numbers.
My question is:
- how to draw randomly 10 numbers, and , therefore, 10 values of that distribution.
- if it's impossible to find the values of this distribtution, how to simply draw 10 random numbers from , for example, vector of 1000 numbers.
Thanks.
Accepted Answer
More Answers (1)
José-Luis
on 19 Mar 2014
doc ranperm
x = rand(1000,1); %could be any other distribution, please see documentation
1.
rand(10,1); %smaller sample from the same distrubution
2.
your_vals = x(randperm(1000,10)); %ten numbers from the first sample
Categories
Find more on Random Number Generation in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!