zero padding in matrix
35 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anvinder Singh
el 29 de Abr. de 2016
Comentada: Rohit Kharat
el 20 de En. de 2022
Hi, I have a 5x5 matrix and i would like to pad it with zeros such that its size becomes 200x200 and the 5x5 matrix is in the middle of the 200x200. Please help.
1 comentario
Roger Stafford
el 29 de Abr. de 2016
You can't precisely center a 5x5 block in a 200x200 block! In which direction do you want it to be off-center?
Respuesta aceptada
Azzi Abdelmalek
el 29 de Abr. de 2016
a=magic(5) % example
b=zeros(200)
b(98:102,98:102)=a
1 comentario
Más respuestas (1)
Ver también
Categorías
Más información sobre Operating on Diagonal 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!