Simple function to transform matrix?

2 ビュー (過去 30 日間)
Jonathan
Jonathan 2013 年 9 月 17 日
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
  1 件のコメント
Walter Roberson
Walter Roberson 2013 年 9 月 17 日
What about the other 705 columns ?

サインインしてコメントする。

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 9 月 17 日
編集済み: Azzi Abdelmalek 2013 年 9 月 18 日
Edit
v=rand(622080,5);% your array
out=reshape(v',720,[])';
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 9 月 17 日
Look at edit
Jonathan
Jonathan 2013 年 9 月 18 日
Thanks, that's the function.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by