How can i skip the zeros in a matrix?

1 次查看(过去 30 天)
Hi, I have a matrix with columns filled with zeros and i want to copy the matrix into a new matrix but to skip the columns with the zeros. Is there any command that can help me? I tried to do it with the sparse command but i didn't really understand what happens there. It skips the zeros but when you want to know how many columns you have in the new matrix it still shows the initial size. thanks in advance!

采纳的回答

Walter Roberson
Walter Roberson 2013-9-11
NewMatrix = OldMatrix(any(OldMatrix,1),:);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by