Borrar filtros
Borrar filtros

How to create a set of 50,000 numbers with specific step size

8 visualizaciones (últimos 30 días)
Christina Williams
Christina Williams el 4 de Mzo. de 2019
Respondida: Kevin Phung el 4 de Mzo. de 2019
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

Respuestas (1)

Kevin Phung
Kevin Phung el 4 de Mzo. de 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.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by