Effacer les filtres
Effacer les filtres

convert a matrix with some zero elments to an array with non-zero elments ?

2 vues (au cours des 30 derniers jours)
som
som le 27 Déc 2011
Hi all
I have a matrix 'A' including some elments equal to zero. i want to make an array 'B' with the non-zero elements of A . for example:
A = [46 0 23;10 73 0; 0 57 13]
B=[46 23 10 73 57 13]
How can I write this program?
Thanks

Réponse acceptée

Image Analyst
Image Analyst le 28 Déc 2011
AT = A'
B = AT(logical(AT))'
A =
46 0 23
10 73 0
0 57 13
AT =
46 10 0
0 73 57
23 0 13
B =
46 23 10 73 57 13

Plus de réponses (1)

Andrei Bobrov
Andrei Bobrov le 28 Déc 2011
B = nonzeros(A.');

Catégories

En savoir plus sur Matrix Indexing 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