convert from cell array to double
15 次查看(过去 30 天)
显示 更早的评论
b =
1×1 cell array
{1×2 cell}
i want to get last element in cell ("4") and convert it in double
0 个评论
采纳的回答
Dyuman Joshi
2023-9-3
Use indexing -
%Assuming this is how your data is stored
b = {{6,4}}
c = b{1}{2}
0 个评论
更多回答(1 个)
Abderrahim. B
2023-9-3
Hi!
Use patentheses () if you want the output to be a cell
myCell = {42, rand(5)}
ele = myCell(1,2)
Use curly parentheses to get data from the cell in its type
ele = myCell{1,2}
You can also try cell2mat with the first approach to convert cell to array of double..
myCell = {42, rand(5)}
ele = cell2mat(myCell(1,2))
Hope this helps
Abderrahim
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!