How to randomly extract 10 elements from that matrix

5 vues (au cours des 30 derniers jours)
Yoon Ju
Yoon Ju le 12 Mai 2023
Commenté : Dyuman Joshi le 14 Mai 2023
i generate 1000*1 matrix through 'A=rand(100,1)'. And now i want to randomly extract 10 elements from that matrix.
How can i get that?!

Réponses (1)

Dyuman Joshi
Dyuman Joshi le 12 Mai 2023
A = rand(1000,1);
%10 random indices less than or equal to the number of elements in A
idx = randperm(numel(A),10)
idx = 1×10
178 548 432 843 471 260 520 944 697 282
out = A(idx)
out = 10×1
0.3810 0.0216 0.9089 0.3924 0.5069 0.7092 0.2685 0.4270 0.0852 0.3132
  2 commentaires
Yoon Ju
Yoon Ju le 13 Mai 2023
Oh i got it-! thank you so much But i couldn't get how 'out' return that elements. Is 'out' a function?
Dyuman Joshi
Dyuman Joshi le 14 Mai 2023
"out" is just the variable to which I have assigned the output. You can change the name of the output as per what you want.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Creating and Concatenating Matrices 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