How do you reshape an array to preserve the order in each row of the original array?

2 vues (au cours des 30 derniers jours)
How do you reshape an array into a 1-dim column such that the first row of the original array is the first set of numbers in the column, followed by the numbers in the second row, and so on?
For example A = magic(3) should become:
B = [
8
1
6
3
5
7
4
9
2];

Réponse acceptée

Bruno Luong
Bruno Luong le 27 Mar 2023
A = magic(3)
A = 3×3
8 1 6 3 5 7 4 9 2
reshape(A.', [],1)
ans = 9×1
8 1 6 3 5 7 4 9 2

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by