If a = 3*3 Matrix then how do I index row 1,2,3 & column 1,3 ?

2 Ansichten (letzte 30 Tage)
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.

Akzeptierte Antwort

bio lim
bio lim am 10 Jul. 2015

Weitere Antworten (0)

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!

Translated by