How do i manipulate matrix in form given below??

 采纳的回答

A=[1 2; 3 4; 5 6; 7 8]
BB=reshape(A',4,[])'

3 个评论

it should be 2 rather than 4
Even this doesn't solve the problem...it becomes [1 5 2 6; 3 7 4 8] rather it should be [1 2 3 4;5 6 7 8]
Please copy and paste the code
A=[1 2; 3 4; 5 6; 7 8]
BB=reshape(A',4,[])'
The result
>>BB =
1 2 3 4
5 6 7 8
%or maybe you want this
A=[1 2; 3 4; 5 6; 7 8]
BB=reshape(A',[],2)'
It was really helpfull..thanks

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by