extract a double array to multiple arrays
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Shannon
il 11 Gen 2020
Risposto: Vladimir Sovkov
il 11 Gen 2020
I have a double array
aa = [1, 2, 3, 4, 11,12, 13, 14, 21, 22, 23, 24]
How can I get 3 arrays
b1 = [1, 11, 21]
b2 = [2, 12, 22]
b3 = [3, 13, 23]
b4 = [4, 14, 24]
Thanks!
Risposta accettata
Vladimir Sovkov
il 11 Gen 2020
b1=aa(1:4:end);
b2=aa(2:4:end);
b3=aa(3:4:end);
b4=aa(4:4:end);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical 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!