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?

 Respuesta aceptada

James Tursa
James Tursa el 10 de Nov. de 2020
Editada: James Tursa el 10 de Nov. de 2020
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.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

AD
el 10 de Nov. de 2020

Editada:

el 10 de Nov. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by