How to reassemble tessellated matrix?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Christopher
el 2 de Oct. de 2014
Respondida: Sean de Wolski
el 2 de Oct. de 2014
I am able to "tessellate" a matrix into 4 smaller matrices by deleting rows and columns as follows:
r= rand(size(P));
r1 = r(1:2:end,1:2:end);
r2 = r(1:2:end,2:2:end);
r3 = r(2:2:end,1:2:end);
r4 = r(2:2:end,2:2:end);
But how do I reassemble the matrix to become r again?
0 comentarios
Respuesta aceptada
Sean de Wolski
el 2 de Oct. de 2014
r(1:2:end,1:2:end) = r1;
r(1:2:end,2:2:end) = r2;
...
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!