% Concatene cell matrix (row-wise or column-wise) regardless of the different sizes, filling the missing cells with NaN.
% This function generalize previous functions "K_cRows" and "K_cCols".
%
% c=K_cCells(b,a,'row') or c=K_cCells(b,a) or c=K_cCells(b,a,"everyCharOrNumber") for row-wise;
% c=K_cCells(b,a,'col') for column-wise;
A={'a11' 'a12';'a21' 'a22'}
A =
'a11' 'a12'
'a21' 'a22'
>> B={'b11' 'b12' 'b13'; 'b21' 'b22' 'b32'; 'b31' 'b32' 'b33'}
B =
'b11' 'b12' 'b13'
'b21' 'b22' 'b32'
'b31' 'b32' 'b33'
>> C=K_cCells(A,B)
C =
'a11' 'a12' []
'a21' 'a22' [ ]
'b11' 'b12' 'b13'
'b21' 'b22' 'b32'
'b31' 'b32' 'b33'
>> C=K_cCells(A,B,'col')
C =
'a11' 'a12' 'b11' 'b12' 'b13'
'a21' 'a22' 'b21' 'b22' 'b32'
[ ] [ ] 'b31' 'b32' 'b33'
인용 양식
Francesco (2025). Concatenate different sizes Cell Matrix (https://kr.mathworks.com/matlabcentral/fileexchange/50832-concatenate-different-sizes-cell-matrix), MATLAB Central File Exchange. 검색 날짜: .
MATLAB 릴리스 호환 정보
플랫폼 호환성
Windows macOS Linux카테고리
태그
도움
도움 준 파일: gold spot
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!| 버전 | 게시됨 | 릴리스 정보 | |
|---|---|---|---|
| 1.0.0.0 |
