How to fill cell arrays with zeros to make them equal

2 ビュー (過去 30 日間)
Joseph Lee
Joseph Lee 2017 年 12 月 10 日
編集済み: Walter Roberson 2017 年 12 月 10 日
M=
{10x107}
{10x108}
{10x103}
{10x105}
how to fill each cell with zeros to reach the size of the max length cell
Gives
M=
{10x108}
{10x108}
{10x108}
{10x108}

採用された回答

Matt J
Matt J 2017 年 12 月 10 日
for i=1:numel(M)
M{i}(end,108)=0;
end
  1 件のコメント
Walter Roberson
Walter Roberson 2017 年 12 月 10 日
編集済み: Walter Roberson 2017 年 12 月 10 日
That will write 0 at M{2}(10,108) but that should not be changed.
for i=1:numel(M)
if size(M{i},2) < 108
M{i}(end,108)=0;
end
end

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFinancial Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by