How to pad cell w/ multiple arrays with zeros

7 ビュー (過去 30 日間)
m j
m j 2020 年 7 月 27 日
コメント済み: m j 2020 年 7 月 28 日
Hello,
I have a cell array: myCell = {1,4}, each array inside the cell can be:
ex:
1500X1
2000X1
2048X1
3400X1
I would like to pad all arrays that dont equal max array length(3400) with zeros and plot. Im trying to use cellfun but am having trouble padding.I can find the max using cellfun easy with:
[s,d] = cellfun(@size,myCell);
outputMax = max([s,d]);
But am having trouble figuring out how to use cellfun ,now that I know what the MAX length is of my arrays....I tried padarray but failed miserably.Any ideas?
Thanks

採用された回答

madhan ravi
madhan ravi 2020 年 7 月 27 日
編集済み: madhan ravi 2020 年 7 月 27 日
M = max(cellfun(@length, myCell));
Wanted = cellfun(@(x) [x; zeros(M - numel(x), 1)], myCell, 'un', 0)
  4 件のコメント
madhan ravi
madhan ravi 2020 年 7 月 28 日
I answered your original question.
m j
m j 2020 年 7 月 28 日
You are correct,I accepted answer and asked question elsewhere.Thanks!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by