Adding a frame of zeros to a matrix
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rashid Hussein
el 4 de Abr. de 2019
Comentada: Guillaume
el 4 de Abr. de 2019
I have a matrix 19x9 I want to add a frame of zeros so I will be 20x10 ?????
0 comentarios
Respuesta aceptada
Guillaume
el 4 de Abr. de 2019
Not sure which corner you want to pad with zeros. I'm assuming bottom right:
newmatrix = [yourmatrix, zeros(size(yourmatrix, 1), 1); zeros(1, size(yourmatrix, 2) + 1)];
If you have the image processing toolbox:
newmatrix = padarray(yourmatrix, [1 1], 'direction', 'post');
2 comentarios
Guillaume
el 4 de Abr. de 2019
newmatrix = [zeros(1, size(yourmatrix, 2) + 2); zeros(size(yourmatrix, 1), 1), yourmatrix, zeros(size(yourmatrix, 1), 1); zeros(1, size(yourmatrix, 2) + 2)];
Using padarray:
newmatrix = padarray(yourmatrix, [1 1]);
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!