concatenate cells
조회 수: 12 (최근 30일)
이전 댓글 표시
for k=1:8
cd(phonemes{k});
datat{k}=dir('*.pcm');
cd ..
x=cat(1,data{k})
end
hey guys,i need some help here...well i have 8 folders each one contains 60.pcm files, i want to concatanate all in one i.e. i want to have a cell with 8x60=480 .pcm files??!! any help please????
답변 (2개)
Jan
2012년 3월 2일
x=cat(1,data{k})
This concatenates data{k} with nothing. I suggest to concatenate the data after the loop:
for k=1:8
cd(phonemes{k});
datat{k}=dir('*.pcm');
cd ..
end
x = cat(1, data{:});
댓글 수: 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!