How to create a set of 50,000 numbers with specific step size
11 views (last 30 days)
Show older comments
I'm trying to generate a new set of 50000 uniformly distributed random numbers and use these random numbers to generate a set of 50000 samples of the photon step size (µs = 100 cm-1 ). Unfortunatly, I can only find the functions linspace, which will give me evenly spaced numbers, but not the amount i need and
0 Comments
Answers (1)
Kevin Phung
on 4 Mar 2019
how about this alternative?
step = 0.1 %whatever step size you want
r = randi([1 100],1,100) %this generates 100 random integers from 1 to 100.
% Just adjust these parameters to what you need.
rand_val = step*r; %rand_val is now a vector of values all divisible by your step size.
0 Comments
See Also
Categories
Find more on Random Number Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!