필터 지우기
필터 지우기

select a portion of the matrix

조회 수: 2 (최근 30일)
Alberto Acri
Alberto Acri 2023년 8월 5일
답변: Star Strider 2023년 8월 5일
Hi! I have the matrix 'matrix_C'. How can I stop (in this case) at the fifth row, i.e. when column 2,3,4 have 0 and column 5 a number?

채택된 답변

Star Strider
Star Strider 2023년 8월 5일
One approach —
LD = load('matrix_C.mat');
C = LD.C
C = 7×5
81 43 134 120 297 82 32 77 73 182 83 0 50 45 116 84 0 0 35 76 85 0 0 0 60 86 0 0 0 44 87 0 0 0 41
idx = find(sum(C(:,[2 3 4])==0,2)==3, 1);
Result = C(1:idx,:)
Result = 5×5
81 43 134 120 297 82 32 77 73 182 83 0 50 45 116 84 0 0 35 76 85 0 0 0 60
.

추가 답변 (1개)

the cyclist
the cyclist 2023년 8월 5일
The following does what you asked for, for this matrix. The "rule" you specified was not perfectly clear to me, though, so this may not generalize to other matrices in the way you want.
load("matrix_C.mat","C")
C
C = 7×5
81 43 134 120 297 82 32 77 73 182 83 0 50 45 116 84 0 0 35 76 85 0 0 0 60 86 0 0 0 44 87 0 0 0 41
indexToLastRow = find(all(C(:,2:4)==0 & C(:,5)~=0,2),1);
C(1:indexToLastRow,:)
ans = 5×5
81 43 134 120 297 82 32 77 73 182 83 0 50 45 116 84 0 0 35 76 85 0 0 0 60

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by