Select random numbers from a matrix
Mostrar comentarios más antiguos
I want to select 100 random numbers from a certain column of a matrix. What should I do?
1 comentario
James Tursa
el 16 de Dic. de 2017
Provide a short example.
Respuestas (1)
Image Analyst
el 16 de Dic. de 2017
Try this:
y = rand(1000, 3); % Some random data
% Select 100 numbers randomly from column 2:
selected = y(randperm(size(y, 1), 100), 2)
2 comentarios
Nishant Gupta
el 21 de Abr. de 2020
thanks a lot
Abdelrahman Mohamed
el 4 de Mzo. de 2023
thanks
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!