Splitting matrix into arrays
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Chase O'Melia
le 9 Mai 2020
Commenté : Chase O'Melia
le 9 Mai 2020
Hello,
how can I split a 2x1000 matrix into a 1x1000?
0 commentaires
Réponse acceptée
Robin Kirsch
le 9 Mai 2020
I assume that you want to split a 2x1000 matrix into 2 1x1000 vectors.
A simple solution to do this is to extract each row, if A is your 2x1000 then you get the 1x1000 with
B = A(1,:) and C = A(2,:).
You can for-loop over this for x dimensional matrices
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!