Create a cell array containing the first 3 doubles from another cell array
이전 댓글 표시
Hello,
I have a cell araay CCC (500x1 cell), containing 500x1 doubles.
I would like to create a new cell array (a) with just the first three doubles (500x1 each) from CCC.
I tried with a = {CCC{1}:CCC{3}}; but is not working, how can I do it?
Thanks in advance for the help :)
채택된 답변
추가 답변 (1개)
Bjorn Gustavsson
2022년 7월 5일
Would:
ThreeFirst = cell2mat(CCC(1:3));
do the trick?
카테고리
도움말 센터 및 File Exchange에서 Data Types에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!