Randomly generate a vector containing integers. Extract items from odd positions using a single command line
Show older comments
Hi guys. How can i randomly generate a vector containing integers and extract items from odd positions using a single command line?
Thank you!
Accepted Answer
More Answers (1)
Walter Roberson
on 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 Comment
Dacian Andrei Firca
on 16 Mar 2022
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!