extract a double array to multiple arrays

1 vue (au cours des 30 derniers jours)
Shannon
Shannon 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!
  1 commentaire
Shannon
Shannon le 11 Jan 2020
Well, I think I can reshape this.
Thanks

Connectez-vous pour commenter.

Réponse acceptée

Vladimir Sovkov
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);

Plus de réponses (0)

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!

Translated by