Eliminate zeros from array
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have to arrays: A=[0 1 0 4; 2 0 3 4] and B= [1 2 3 4; 5 6 7 8]
I want to eleiminate zeros from matrix A and the corresponding values from matrix B. The solution is:
A=[1 4 2 3 4] and B=[2 4 5 7 8]
0 Commenti
Risposte (1)
James Tursa
il 30 Apr 2018
AT = reshape(A',1,[]);
BT = reshape(B',1,[]);
B = BT(AT~=0);
A = AT(AT~=0);
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!