How can I convert double value to cell?

조회 수: 59 (최근 30일)
Mira le
Mira le 2021년 8월 25일
편집: Awais Saeed 2021년 8월 25일
Hello every one
I want to convert double value in cell in order to compare with each other
for example I have the cell array S={2 3, 1 4 , 1 2 5}
S{1}=2 3
S{2} = 1 4
S{3} = 1 2 5
and
double values are taking from matrix
t(1,2)=3;
the comparison will effect with each cell value from S with each double value from matrinx t
How can I do it
Thank you

채택된 답변

Awais Saeed
Awais Saeed 2021년 8월 25일
편집: Awais Saeed 2021년 8월 25일
There are multiple ways
t = magic(5); % double
% method one. Convert single element
x = t(1,2)
x = num2cell(x)
% method two. Use curly braces
x = {t(1,2)}
% method three. Convert whole matrix into cell
num2cell(t)

추가 답변 (0개)

카테고리

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

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by