Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

3 Ansichten (letzte 30 Tage)
Lila wagou
Lila wagou am 7 Apr. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 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

Antworten (1)

David Goodmanson
David Goodmanson am 7 Apr. 2017
Bearbeitet: David Goodmanson am 7 Apr. 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

Diese Frage ist geschlossen.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by