edit-selecting random values
Afficher commentaires plus anciens
I have a 10x10 matrix,i need 3 x10 ,but the corresponging column values must not change
if u r selecting any elememt from ist row that corresponging column values must not change
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 13 Jan 2012
It looks to me as if the answer should just be
p = randperm(size(A,1));
out = A(p(1:3),:);
1 commentaire
kash
le 13 Jan 2012
Catégories
En savoir plus sur Sparse Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!