1 回答
TA贡献1797条经验 获得超4个赞
这是一个cellfun与匿名函数一起使用的解决方案,首先用NaN值填充每个单元格,然后vertcat将单元格内容放入矩阵中:
tcell = {[1 2 3], [1 2 3 4 5], [1 2 3 4 5 6], [1], []}; % Sample cell array
maxSize = max(cellfun(@numel, tcell)); % Get the maximum vector size
fcn = @(x) [x nan(1, maxSize-numel(x))]; % Create an anonymous function
rmat = cellfun(fcn, tcell, 'UniformOutput', false); % Pad each cell with NaNs
rmat = vertcat(rmat{:}); % Vertically concatenate cells
并输出:
rmat =
1 2 3 NaN NaN NaN
1 2 3 4 5 NaN
1 2 3 4 5 6
1 NaN NaN NaN NaN NaN
NaN NaN NaN NaN NaN NaN
添加回答
举报