Intersection of row and column

조회 수: 3 (최근 30일)
Anca Toma
Anca Toma 2022년 5월 23일
댓글: Anca Toma 2022년 5월 23일
Hi, I am triyng to make a new with the elements extracted from the intresection of the rows 4,5,6 with the columns 1,3,6 from this matrix.

답변 (2개)

Prakash S R
Prakash S R 2022년 5월 23일
I assume you are trying to form a new 3x3 matrix G from rows and columns of H. You can do this by specifying the indices of interest:
G = H([4,5,6], [1,3,6])

Image Analyst
Image Analyst 2022년 5월 23일
H = [1 0 0 -1 0 0;...
0 1 0 0 -1 0;...
0 0 1 0 0 -1;...
2 0 1 2 0 1;...
1 1 1 1 1 1;...
-1 2 -2 -1 2 -2];
M = H([4,5,6], [1,3,6])
M = 3×3
2 1 1 1 1 1 -1 -2 -2

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by