to remove zero elements from n number matrices

i have 112 matix in workspace say MT1,MT2,.....,MT112
refer attached image
lets take a matrix if all the three columns has zero entry i dont want those elements in cells,
how can i do the same for all matices
code plz

댓글 수: 1

Stephen23
Stephen23 2019년 2월 1일
편집: Stephen23 2019년 2월 1일
"code plz"
This has got to be a joke, right?
You just ignored the MATLAB documentation and advice from experienced users not to do this because it makes code complex, slow, and obfuscated:
And now, just ten minutes later, you have discovered that your code is so complex and obfuscated that you cannot even figure out how to perform simple operations on your data.
Do you think that perhaps this might have something to do with the advice that you have been given? The advice that you ignored?
You are wasting your time.

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

답변 (1개)

KSSV
KSSV 2019년 2월 1일

0 개 추천

Let A be your matrix...to remove rows with all zeros use:
A(~any(A,2),:) = []

댓글 수: 3

working
but how can i initatiate the same for all matrix say MT1 to MTn
Use indexing. Just like we told you.
KSSV
KSSV 2019년 2월 1일
I already told you...you need not to do that from cell.......it is waste of time.....

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

카테고리

도움말 센터File Exchange에서 Variables에 대해 자세히 알아보기

질문:

2019년 2월 1일

편집:

2019년 2월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by