How do I remove 9 random numbers from a shuffled array?
Show older comments
Hi, i have an array of numbers from 3 to 35 and i have a function created to shuffle these numbers. Right now my program takes the numbers from 3:35 and shuffles them. My question is how do i remove 9 random numbers from this array of shuffled numbers. Thanks
Answers (3)
KALYAN ACHARJYA
on 16 Nov 2019
Edited: KALYAN ACHARJYA
on 16 Nov 2019
"My question is how do i remove 9 random numbers from this array of shuffled numbers"
shuffled_data=randi(35,[1 35]); % Just Example
shuffle_data(randi(length(shuffle_data),[1 9]))=[]
2 Comments
Ryan Littlejohn
on 16 Nov 2019
KALYAN ACHARJYA
on 16 Nov 2019
shuffle_data(1:9)=[]
or
shuffle_data(randi(27):randi(27)+9)=[]
or
shuffle_data(end-9:end)=[]
Walter Roberson
on 16 Nov 2019
shuffled_data(ismember(shuffled_data, values_to_ignore)) = [];
Image Analyst
on 16 Nov 2019
0 votes
Since they’re already shuffled simply do vec = vec(10:end) % Remove 9 values
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!