cell array
조회 수: 2 (최근 30일)
이전 댓글 표시
I have two cell array
entryname1 =
'b'
'a'
entryname2 =
'd'
'c'
when i concatenate
entryname={entryname1 entryname2}
entryname =
{2x1 cell} {2x1 cell}
But I need to get the output as 'b' 'd' 'a' 'c' how to get an output like this.
댓글 수: 0
채택된 답변
Thomas
2012년 4월 23일
Try
entryname1 =['b';'a']
entryname2 =['d';'c']
entryname=[entryname1 entryname2]
댓글 수: 0
추가 답변 (1개)
Junaid
2012년 4월 23일
try like this.
entryname=[entryname1 entryname2];
use [] instead of {}. I hope it will work.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!