How can I generate a pseudo random column vector V

3 visualizaciones (últimos 30 días)
Ihor
Ihor el 5 de Dic. de 2022
Comentada: Jon el 6 de Dic. de 2022
for N = [1 2 5 10.^[ 1 : 5 ] ]
V = rand( N, 1 ) ; % I'm not sure if it should look like this
end
I have this cycle, how can I generate a pseudo random column vector V of varying length N (using this cycle)

Respuestas (1)

Jon
Jon el 5 de Dic. de 2022
Yes this will make a random column vector of length N at each iteration.
The values will be uniformly distributed between 0 and 1. If you want them normally distributed use randn.
  2 comentarios
Ihor
Ihor el 5 de Dic. de 2022
Thank you!
Jon
Jon el 6 de Dic. de 2022
Glad that helped. If that answered your question please accept the answer so that others who might have a similar problem will know that an answer is available.

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by