remove the zeros in the Matrix

조회 수: 1 (최근 30일)
Ali ALATAWI
Ali ALATAWI 2021년 11월 19일
편집: Adam Danz 2021년 11월 19일
How can I remove the zeros from matrix A ??

채택된 답변

Adam Danz
Adam Danz 2021년 11월 19일
편집: Adam Danz 2021년 11월 19일
Here's how to remove rows or columns that contain only 0s
data = [0 0 0 0; 0 4 5 2; 0 2 5 4; 0 2 4 1]
data = 4×4
0 0 0 0 0 4 5 2 0 2 5 4 0 2 4 1
rowsAll0 = all(data==0,1); % columns of 0s
data(:, rowsAll0) = [];
colsAll0 = all(data==0,2); % rows of 0s
data(colsAll0, :) = []
data = 3×3
4 5 2 2 5 4 2 4 1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by