Hi, I want to divide a 1x5872 matrix into 8x8 blocks. Can someone guide me please
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi, I want to divide a 1x5872 matrix into 8x8 blocks. Can someone guide me please.
댓글 수: 0
답변 (1개)
Geoff Hayes
2023년 1월 7일
@javad danesh - you could use reshape to manipulate your array into a set of 8x8 blocks. Since 5872 is not divisible by 64, you would need to pad it. For example,
x = randi(256,1,5872);
xPadded = [x zeros(1,16)];
xReshaped = reshape(xPadded, 8, 8, length(xPadded)/64);
The first 64 elements of xPadded make up the first 8x8 block of xReshaped, etc.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!