Extracting elements common to rows and columns in a matrix

If I have a 5x6 matrix for example, how can I go about extracting elements common to the 3rd and 5th rows & the 4th and 5th columns?

 채택된 답변

James Tursa
James Tursa 2020년 11월 10일
편집: James Tursa 2020년 11월 10일
M = your matrix
result = M([3,5],4:5)
The [3,5] syntax is simply a vector with the indexes specified in any order. They don't have to be contiguous or increasing and can even repeat or decrease if you want.
The 4:5 syntax is a vector of contiguous indexes between the first number and the second number. E.g.,
4:5 is the same as [4,5]
2:6 is the same as [2,3,4,5,6]
etc.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

질문:

AD
2020년 11월 10일

편집:

2020년 11월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by