extract a double array to multiple arrays
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Shannon
le 11 Jan 2020
Réponse apportée : Vladimir Sovkov
le 11 Jan 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!
Réponse acceptée
Vladimir Sovkov
le 11 Jan 2020
b1=aa(1:4:end);
b2=aa(2:4:end);
b3=aa(3:4:end);
b4=aa(4:4:end);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!