How do I convert a double into a cell array?

조회 수: 300 (최근 30일)
Cai Chin
Cai Chin 2021년 1월 15일
편집: Cris LaPierre 2021년 1월 15일
Hi, I am attempting to convert a double called 'instantaneous_frequency_v' into a cell array. 'instantaneous_frequency_v' is currently a double with the dimensions 30 x 1 (see attached) How do I convert this into a 1 x 30 cell array? Thanks in advance.

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 1월 15일
You can use num2cell.
Use the transpose operator to convert a 30x1 to a 1x30.
a=(1:5)'
a = 5×1
1 2 3 4 5
b=num2cell(a')
b = 1x5 cell array
{[1]} {[2]} {[3]} {[4]} {[5]}
  댓글 수: 2
Cai Chin
Cai Chin 2021년 1월 15일
Hi, thank you for your answer. Apologies, I asked the incorrect question. How would I instead convert a 30 x 1 double into a 1 x 1 cell array containing a 1 x 30 double?
Cris LaPierre
Cris LaPierre 2021년 1월 15일
편집: Cris LaPierre 2021년 1월 15일
a=(1:5)'
a = 5×1
1 2 3 4 5
b={a'}
b = 1x1 cell array
{1×5 double}

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by