Creating a function that does the same as myrandperm(n,k)
1 view (last 30 days)
Show older comments
Furkan Karaman
on 12 Nov 2020
Commented: Furkan Karaman
on 19 Nov 2020
I have to create a function,which does the same as myrandperm(n,k). I thought of creating a for loop which goes from 1 to k in which an array p(i) gets initialised by a random integer of an array n. And then p(i) gets deleted from from the array n.
But I didnt found a function that gives me a random integer from an array.
Do you guys have any ideas?
0 Comments
Accepted Answer
Walter Roberson
on 12 Nov 2020
randi(length(n))
4 Comments
Walter Roberson
on 19 Nov 2020
random index = randi(length(d))
random value = d(random index)
delete entry "random index" from d
lathe, rinse, repeat
More Answers (0)
See Also
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!