필터 지우기
필터 지우기

Remove Entire Column when a condition is met.

조회 수: 2 (최근 30일)
Pragyan Dahal
Pragyan Dahal 2019년 10월 30일
댓글: Pragyan Dahal 2019년 10월 30일
Hello, I am constructing a cost matrix for an association problem. It is a minimization problem and the cost matrix is structured in this way
C=[12 inf 13 inf inf inf inf;
13 inf 15 inf inf inf inf;
inf inf inf 14 inf 27 inf]
The aim for me is to remove the column in which I have inf elements only i.e. in this example i want to remove 2nd, 5th and 7th column from the cost matrix.
Thanks in advance for the help.

답변 (1개)

pavan kumar
pavan kumar 2019년 10월 30일
C(:,2)=[]
C(:,4)=[]
C(:,5)=[]
  댓글 수: 2
Pragyan Dahal
Pragyan Dahal 2019년 10월 30일
Thank you very much for the reply, this i figured given some answers for the row cases in this forum, but i am not sure on how to define the condition here, i mean, condition such that all the elements are infinite....
Pragyan Dahal
Pragyan Dahal 2019년 10월 30일
I was able to solve the issue by using the code segment shown below.
remove=true(size(C,2),1);
for pp=1:size(C,2)
qq=1;
while C(qq,pp)==inf
qq=qq+1;
if qq==size(C,1)+1
remove(pp)=0;
break
end
end
end
C=C(:,remove)

댓글을 달려면 로그인하십시오.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by