Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 27 Déc 2012
Modifié(e) : Azzi Abdelmalek le 27 Déc 2012

0 votes

p=[1 2;3 4;5 6]
check this
p(:,2)
p(3,:)
p(:,2) means all lines, column number 2, p(3,:) means all columns, line number 3

1 commentaire

Hajar ALSHOUFI
Hajar ALSHOUFI le 4 Sep 2019
if we have n points =21
I saw a code the author wrote:
p(ny,:) where p is some matrix, how can we understad it, I know the first one refers to rows and the second for columns but how can we understand it what rows is he speaking about

Connectez-vous pour commenter.

Plus de réponses (1)

Wayne King
Wayne King le 27 Déc 2012
Modifié(e) : Wayne King le 27 Déc 2012

0 votes

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 Get Started with MATLAB dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by