Filter löschen
Filter löschen

Simple function to transform matrix?

6 Ansichten (letzte 30 Tage)
Jonathan
Jonathan am 17 Sep. 2013
Hi There,
I have a large matrix, 622080x5, elements that I'd like to have dimensions of 4320x720. Each line would be wrapped by taking elements (2,1:5), (3,1:5) and placing them in the new matrix as elements (1,6:10) and (1,11:15). I'm sure there's a simple function for this, but I'm having a hard time finding anything, since "transform matrix" tends to refer to different sorts of computations.
Thanks, Jonathan

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 17 Sep. 2013
Bearbeitet: Azzi Abdelmalek am 18 Sep. 2013
Edit
v=rand(622080,5);% your array
out=reshape(v',720,[])';
  2 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 17 Sep. 2013
Look at edit
Jonathan
Jonathan am 18 Sep. 2013
Thanks, that's the function.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by