how p(:,j) differs from p(j,:)?
Show older comments
I often see people using these,
how p(:,j) differs from p(j,:)?
Accepted Answer
More Answers (1)
Wayne King
on 27 Dec 2012
Edited: Wayne King
on 27 Dec 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)
Categories
Find more on Object Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!