이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
% 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 (2026). Concatenate different sizes Cell Matrix (https://kr.mathworks.com/matlabcentral/fileexchange/50832-concatenate-different-sizes-cell-matrix), MATLAB Central File Exchange. 검색 날짜: .
도움
도움 준 파일: gold spot
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.0.0.0 |
