Filter löschen
Filter löschen

zero fill

63 Ansichten (letzte 30 Tage)
itsik
itsik am 15 Mai 2011
hello i need to make matrix [42X60] from matrix [42x52] how can i make it by filling with zeros? thank u very much!

Akzeptierte Antwort

Arturo Moncada-Torres
Arturo Moncada-Torres am 15 Mai 2011
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 Kommentare
itsik
itsik am 15 Mai 2011
thanks!!!!!!
Arturo Moncada-Torres
Arturo Moncada-Torres am 16 Mai 2011
You are welcome ;)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by