what is wrong with my script?

조회 수: 1 (최근 30일)
Manuj Sharma
Manuj Sharma 2020년 1월 31일
편집: Adam 2020년 1월 31일
A =
0.1270 0.2785 0.1576 0.1270
0.9134 0.5469 0.9706 0.9134
0.6324 0.9575 0.9572 0.6324
0.0975 0.9649 0.4854 0.0975
A(2:4,2:4)
ans =
0.5469 0.9706 0.9134
0.9575 0.9572 0.6324
0.9649 0.4854 0.0975
Ques: Why the answer is not according to what i believe i.e.,
2R2C 4R4C 0.5469 0.0975
4R2C 4R4C 0.9649 0.0975

채택된 답변

Adam
Adam 2020년 1월 31일
편집: Adam 2020년 1월 31일
2:4
means
[2, 3, 4]
A( [2 4], [2 4] )
would give what you want.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by