필터 지우기
필터 지우기

how can i delete an empty matrix

조회 수: 1 (최근 30일)
omar mahallawy
omar mahallawy 2019년 3월 15일
댓글: Guillaume 2019년 3월 15일
i used a function that would delete columns with any negative elements in them
i had 9 columns now i'm left with 6 columns
problem is that the 3 i purposly rejected come out as a Empty matrix: 321-by-0
how can i tell matlab to ignore this completly so i can work with the correct 6 columns ?
  댓글 수: 4
madhan ravi
madhan ravi 2019년 3월 15일
illustrate with a short example
Guillaume
Guillaume 2019년 3월 15일
We need a lot more details to understand what you're doing. Most likely, you're doing very something wrong. There's already a problem with the 2 lines you've shown, which should be:
idx = any(A < 0, 1); %use ,1 to make sure you operate along the rows
A = A(:, ~idx);
"so all i wanted is to delete the empty matrix to continue with my code peacefully"
delete from what? From memory? If your code was expecting a variable and you've deleted from memory, it certainly won't continue peacefully. To me, this sounds like an XY problem where you've got a problem and ask us to fix it using a solution that is completely inappropriate (delete a matrix) instead of describing the real problem.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by