필터 지우기
필터 지우기

How I can create this matrix with this logical operation?

조회 수: 1 (최근 30일)
Sourasis Chattopadhyay
Sourasis Chattopadhyay 2021년 8월 4일
답변: Awais Saeed 2021년 8월 4일

채택된 답변

Awais Saeed
Awais Saeed 2021년 8월 4일
I would do this like
matA = [1 7000; 1.05 6500; 1.05 6800; 1.12 6400; 1.34 6700];
simdone = 1;
row = 1;
while (simdone == 1)
if ((matA(row+1,1) > matA(row,1)) && (matA(row,2) > matA(row+1,2) ))
row = row + 1;
else
matA(row+1,:) = []; % delete row if condition does not match
end
if (row == size(matA,1))
simdone = 0; % break the while loop if index is out of bound
end
end
disp(matA)

추가 답변 (0개)

카테고리

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