フィルターのクリア

zero fill

63 ビュー (過去 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
Arturo Moncada-Torres 2011 年 5 月 15 日
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
Arturo Moncada-Torres 2011 年 5 月 16 日
You are welcome ;)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by