How to create a set of 50,000 numbers with specific step size
13 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Kevin Phung
2019 年 3 月 4 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!