文件名称:Concatenate different size Cell Matrix:Concatene cell matrix (row-wise or column-wise) 无论大小不同-matlab开发
文件大小:1KB
文件格式:ZIP
更新时间:2024-06-19 00:30:17
matlab
% Concatene 单元矩阵(按行或按列),无论大小如何,用 NaN 填充缺失的单元。 % 该函数概括了之前的函数“K_cRows”和“K_cCols”。 % % c=K_cCells(b,a,'row') 或 c=K_cCells(b,a) 或 c=K_cCells(b,a,"everyCharOrNumber") 用于按行; % c=K_cCells(b,a,'col') 列式; A={'a11''a12';'a21''a22'} 一 = 'a11' 'a12' 'a21' 'a22' >> B = {'b11''b12''b13'; 'b21' 'b22' 'b32'; 'b31' 'b32' 'b33'} 乙 = 'b11' 'b12' 'b13' 'b21' 'b22' 'b32' 'b31' 'b32' 'b33' >> C=K_cCells(A,B) C
【文件预览】:
K_cCells.zip