how p(:,j) differs from p(j,:)?
Afficher commentaires plus anciens
I often see people using these,
how p(:,j) differs from p(j,:)?
Réponse acceptée
Plus de réponses (1)
Wayne King
le 27 Déc 2012
Modifié(e) : Wayne King
le 27 Déc 2012
p(:,j) takes all the rows and the j-th column of p
p(j,:) takes the j-th row and all the columns of p
So
p = [1 2; 3 4];
j = 1;
p(j,:)
p(:,j)
Catégories
En savoir plus sur Object Analysis 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!