How can i reorder NxM matrix into a 1D array

I am looking to take a sample matrix below. The matrix will be large and looking for fast and non looping solution. Thank you.
a=[1 2 3;4 5 6;7 8 9];
reshape it into:
b=[7 8 9 4 5 6 1 2 3];

1 Kommentar

Matthew
Matthew am 12 Jun. 2018
No the matrix is not always 3 rows. It will likely be much more in both rows and columns.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Star Strider
Star Strider am 12 Jun. 2018

1 Stimme

Using the reshape (link) function:
b = reshape(a([3 2 1],:)', 1, [])
b =
7 8 9 4 5 6 1 2 3

1 Kommentar

Or generalized for any number of rows:
reshape(a(end:-1:1,:).', 1, [])

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Alfonso
Alfonso am 12 Jun. 2018

0 Stimmen

Without looping you can do:
b = [a(end,:), a(end-1,:), a(end-2,:)]; % 1D array
b =
7 8 9 4 5 6 1 2 3
You can repeat the iterations as many rows you have: [a(end-1,:), ... ,a(end-50,:)]

Kategorien

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by