필터 지우기
필터 지우기

Pass data in subcells in a cell array to double-type data

조회 수: 2 (최근 30일)
Maria
Maria 2014년 7월 23일
댓글: Maria 2014년 7월 23일
I have a cell array with 5 columns and the same number of rows. Two of the columns comprise text-data (char type), other two columns comprise numbers (double type) and one column has sub-cells which are in their turn numbers too (double type). I am used to work with cell-arrays with both text and numbers, but I am having difficulties to go on with my code with the sub-cells in one of the columns. Does someone know how to change the sub-cells to regular double-type elements?
Thank you
  댓글 수: 2
Sara
Sara 2014년 7월 23일
Have you tried cell2mat?
Maria
Maria 2014년 7월 23일
Sara yes, it says 'Cell2mat cannot support cell arrays containing cell arrays or objects.'

댓글을 달려면 로그인하십시오.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 23일
If your data looks like this:
A={'a' 'b' 1 2 {3};'c' 'd' 4 5 {6}}
A(:,5)=cellfun(@(x) x{1} ,A(:,5),'un',0)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by