Randomly generate a vector containing integers. Extract items from odd positions using a single command line
Afficher commentaires plus anciens
Hi guys. How can i randomly generate a vector containing integers and extract items from odd positions using a single command line?
Thank you!
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 3 Mar 2022
struct('d',randi(100,1,1)).d(1:2:end)
Does not require that the number of values is even.
Seems pointless to me unless you are carefully controlling the random seed. Just wastes time and is unclear. The numbers are not more random by taking every second one instead of all of them.
1 commentaire
Dacian Andrei Firca
le 16 Mar 2022
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!