how to reshape this matrix

A = [ 1 2 3 4 5 6 7 8 9 10; 11 12 13 14 15 16 17 18 19 20;]
I want reshape to
1 2;
3 4;
5 6;
7 8;
.
.
.
19 20;
thank you sir.

 Accepted Answer

result = reshape(A.',2,[]).'

More Answers (0)

Categories

Find more on Linear Algebra in Help Center and File Exchange

Tags

Asked:

on 2 Jun 2019

Commented:

on 2 Jun 2019

Community Treasure Hunt

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

Start Hunting!