extract matrix from matrix
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have matrix of 256*256 n i want to extract first 4*4 matrix of every 8*8 blocks of 256*256 matrix
0 comentarios
Respuestas (1)
Azzi Abdelmalek
el 28 de Mzo. de 2014
Editada: Azzi Abdelmalek
el 29 de Mzo. de 2014
Edit
A=rand(256) % Example
idx=1:8:256
[jj,ii]=meshgrid(idx,idx)
B=cell2mat(arrayfun(@(ii,jj) A(ii:ii+3,jj:jj+3),ii,jj,'un',0))
8 comentarios
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!