How can I resize the matrix?

1 vue (au cours des 30 derniers jours)
Rengin
Rengin le 16 Fév 2015
Hello, Let's say I have the matrix as below:
A= [0 0 0 0 0;0 0 0 0 0;2 3 9 1 7;4 5 6 5 4;0 0 0 0 0] (It can be in different size too)
I want have:
B=[2 3 9 1 7; 4 5 6 5 4] out of A
How can I do that? Thx

Réponse acceptée

Thorsten
Thorsten le 16 Fév 2015
B = A(sum(A') ~= 0, :)

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by