If a = 3*3 Matrix then how do I index row 1,2,3 & column 1,3 ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kazi Belayet Hossain
am 10 Jul. 2015
Bearbeitet: Azzi Abdelmalek
am 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 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!