필터 지우기
필터 지우기

removing specific column based on some condition

조회 수: 13 (최근 30일)
Mohammad Juned
Mohammad Juned 2021년 4월 11일
댓글: Mohammad Juned 2021년 4월 11일
Hi all, I want to remove specific column from a matrix based on certain condition.
let A be a matrix of order 8*3
A=[20 150 1500; 30 400 375; 75 450 2000; 70 100 400; 45 2500 420; 150 480 300; 142,420,1700; 135, 450 420];
if sum of that column is less than 1000 or greater than 100000 then remove that column. how it can be done.

채택된 답변

Matt J
Matt J 2021년 4월 11일
편집: Matt J 2021년 4월 11일
s=sum(A,1);
A(:, s<1000 | s>100000)=[];

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품


릴리스

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by