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?

답변 (1개)

Image Analyst
Image Analyst 2016년 10월 3일

0 개 추천

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
kritika adhikari 2016년 10월 3일
Thank you so much. One more thing, is it possible to reshape bigger size matrix into smaller one.
ALBERT ALEXANDER STONIER
ALBERT ALEXANDER STONIER 2016년 10월 3일
You can reshape the size of the matrix using the function 'reshape'

이 질문은 마감되었습니다.

질문:

2016년 10월 3일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by