Cell to double returns NaN
조회 수: 15 (최근 30일)
이전 댓글 표시
I have a c={7 x 1 cell}, and used c1=str2double(c), but get NaN's any advice please.
댓글 수: 0
채택된 답변
Walter Roberson
2015년 10월 18일
If the contents of the cell are already numeric and the task is to convert from a cell array to a purely numeric array, then
c1 = cell2mat(c);
댓글 수: 0
추가 답변 (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!