If a = 3*3 Matrix then how do I index row 1,2,3 & column 1,3 ?
2 views (last 30 days)
Show older comments
Kazi Belayet Hossain
on 10 Jul 2015
Edited: Azzi Abdelmalek
on 10 Jul 2015
A =
0.8147 0.9134 0.2785
0.9058 0.6324 0.5469
0.1270 0.0975 0.9575
>> A(2:2,2:3)
ans =
0.6324 0.5469
>> A(2:3,2:3)
ans =
0.6324 0.5469
0.0975 0.9575
>> A(3:3,3:3)
ans =
0.9575
>> A(1:3,3:3)
ans =
0.2785
0.5469
0.9575
>> A(1:3,1 3)
A(1:3,1 3)
Error: Unexpected MATLAB expression.
>> A(1:3,1:3)
ans =
0.8147 0.9134 0.2785
0.9058 0.6324 0.5469
0.1270 0.0975 0.9575
>> A(1:3,1;3)
A(1:3,1;3)
Error: Unbalanced or unexpected parenthesis or bracket.
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Matrix Indexing 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!