Concatenate different sizes Cell Matrix

Concatene cell matrix (row-wise or column-wise) regardless of the different sizes

이 제출물을 팔로우합니다

% 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

카테고리

Help CenterMATLAB Answers에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

일반 정보

MATLAB 릴리스 호환 정보

  • 모든 릴리스와 호환

플랫폼 호환성

  • Windows
  • macOS
  • Linux
버전 퍼블리시됨 릴리스 정보 Action
1.0.0.0