zero fill

42 次查看(过去 30 天)
itsik
itsik 2011-5-15
hello i need to make matrix [42X60] from matrix [42x52] how can i make it by filling with zeros? thank u very much!

采纳的回答

Arturo Moncada-Torres
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 个评论
itsik
itsik 2011-5-15
thanks!!!!!!
Arturo Moncada-Torres
You are welcome ;)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by