Removing element of array at random

25 vues (au cours des 30 derniers jours)
Ndugatuda Maxwell
Ndugatuda Maxwell le 31 Déc 2021
I have a 200 x 1 matrix of random numbers and I want to remove 10 numbers from the array at random.
Here is sample data i used:
a = 0; %mean
b = 1; %standard deviation
random_num = b*randn(200,1)+a; %generates random numbers
How can I remove, at random 10 numbers from the random_num variable?

Réponse acceptée

Stephen23
Stephen23 le 31 Déc 2021
a = 0;
b = 1;
rn = b*randn(200,1)+1;
ix = randperm(200,10) % indices of elements to remove
ix = 1×10
145 76 40 81 116 61 82 94 113 182
rn(ix) = []; % remove elements
  1 commentaire
Ndugatuda Maxwell
Ndugatuda Maxwell le 31 Déc 2021
Thank you Stephen. It helped!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by