zero fill

hello i need to make matrix [42X60] from matrix [42x52] how can i make it by filling with zeros? thank u very much!

 Respuesta aceptada

Arturo Moncada-Torres
Arturo Moncada-Torres el 15 de Mayo de 2011

6 votos

You can try something like this:
oldMatrix = ones(42,52); % The original matrix
newMatrix = zeros(42,60); % The new matrix (with zeros)
newMatrix(1:42, 1:52) = oldMatrix; % Overlap the original matrix in the new matrix
Hope it helps ;-) !

2 comentarios

itsik
itsik el 15 de Mayo de 2011
thanks!!!!!!
Arturo Moncada-Torres
Arturo Moncada-Torres el 16 de Mayo de 2011
You are welcome ;)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by