Info

此问题已关闭。 请重新打开它进行编辑或回答。

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

1 次查看(过去 30 天)
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

回答(1 个)

David Goodmanson
David Goodmanson 2017-4-7
编辑:David Goodmanson 2017-4-7
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

此问题已关闭。

产品

Community Treasure Hunt

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

Start Hunting!

Translated by