필터 지우기
필터 지우기

Unfold cell

조회 수: 1 (최근 30일)
Rafael Freire
Rafael Freire 2011년 9월 10일
How i can unfold a cell into a vector
cell{1,1}=[10 20 30]
cell{1,2}=[40 50 60]
cell{1,3}=[70 80 90]
cell{1,4}=[10 20 30]
cell{1,5}=[40 50 60]
to a vector=[10 20 30 40 50 60 70 80 90 10 20 30 40 50 60]
Best regards

채택된 답변

the cyclist
the cyclist 2011년 9월 10일
>> vector = cell2mat(cell)
  댓글 수: 1
Oleg Komarov
Oleg Komarov 2011년 9월 10일
[cell{:}]

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by