convert from cell array to double
조회 수: 16 (최근 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!