what does A(3, :) mean or A(:, 3)?
Show older comments
Accepted Answer
More Answers (1)
Given a matrix "a" with elements
a = [1 2 3; 4 5 6]
To find a(x,y), it is important to note that:
- x stands for row
- y stands for column.
- : stands for all
- thus, a(x,y) is the element where x and y intersects.
- a(1,3) : is the element on the intersection of row 1 and column 3.
- a(:,3) : are the elements on the intersection of all rows and column 3.
- a(1,:) : are the elements on the intersection of row 1 and all columns.
a = [1 2 3; 4 5 6];
p = a(1,3)
q = a(:,3)
r = a(1,:)
Categories
Find more on Creating and Concatenating Matrices 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!