Concatenate cell array inside a cell array
10 ビュー (過去 30 日間)
古いコメントを表示

My cell array is of different size. I want to convert it to the matrix. I added NAN to make the size equal but I found NAN added inside a cell array like the picture [1*481]. I try to horzcat it but did not work. Can anyone help me, please?

0 件のコメント
回答 (1 件)
Voss
2023 年 9 月 24 日
C = {rand(1,7),rand(1,4),rand(1,3)};
disp(C);
num = cellfun(@numel,C);
N = numel(C);
M = NaN(N,max(num));
for ii = 1:N
M(ii,1:num(ii)) = C{ii};
end
disp(M);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!