How to convert a cell array to a double array
조회 수: 2 (최근 30일)
이전 댓글 표시
I have computed the data in the cell as [3x1 cell] but actually i do not want this type of data all i need is to get the data in the form of [3x1 double]....I need to know is there any way to convert from cell to double array.. Any help is appreciated
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2015년 6월 7일
편집: Azzi Abdelmalek
2015년 6월 7일
v={1;2 ;3}
out=cell2mat(v)
댓글 수: 5
Azzi Abdelmalek
2015년 6월 7일
Also, you can't get
{4x1 double}
For your case it's
{5x1 double}
Azzi Abdelmalek
2015년 6월 7일
b={{{3 ;4}; {1}; {5}; {2}};{{1;2}; {2}; {2}; {4}}}
d= cellfun(@(y) cell2mat(cat(1,y{:})),b,'un',0)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!