Running the 7 blocks
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
On running 7 blocks of message. I get 1:28 matrix everytime(I have done certain steps in the middle). It is shown below [1:28] [1:28] : : [1:28]-7th block I want all these in overall 1 matrix of size 7:28. Is it possible?
0 件のコメント
回答 (1 件)
Image Analyst
2016 年 10 月 3 日
Try reshape on your 1-D message vector to turn it into a 2D one.
message2d = reshape(message1d, [7, 28]);
If it's not the right order, try transposing things or reversing the 7 and 28.
2 件のコメント
kritika adhikari
2016 年 10 月 3 日
ALBERT ALEXANDER STONIER
2016 年 10 月 3 日
You can reshape the size of the matrix using the function 'reshape'
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!