Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

matrix manipulation : ind of wanted rows and columns stocked in a vector

1 visualización (últimos 30 días)
Lila wagou
Lila wagou el 7 de Abr. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Dear all, for a square matrix is it possible to get only the the first and the third (not the second) rows and columns : the wanted are stocked in a B vector
A =
35 6 19
3 7 23
31 2 27
B = (1 3)
C = function (A, B)
C =
35 19
31 27

Respuestas (1)

David Goodmanson
David Goodmanson el 7 de Abr. de 2017
Editada: David Goodmanson el 7 de Abr. de 2017
Hi Lila, you just have to make an index vector:
B = [1 3];
C = A(B,B)
The row index is the first listed and the column index is second, and these can be independent:
>> A = magic(5)
A = 17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9
>> C = A([1 3 4],[3 5])
C = 1 15
13 22
19 3

La pregunta está cerrada.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by