Error using strfind Conversion to double from table is not possible.
이전 댓글 표시
I have a table and I extracted one value from the table and it is
dataTimeColumn(1,1) = 2023-07-24T16:15:54.200
And I tried to find T in this by using strfind like this.
temp2 = strfind(dataTimeColumn(1,1),'T')
and when I run I get the error
Error using strfind
Conversion to double from table is not possible.
Why is that and how can I solve it. Thank you.
채택된 답변
추가 답변 (1개)
Walter Roberson
2023년 7월 25일
0 개 추천
temp2 = strfind(dataTimeColumn{1,1},'T')
댓글 수: 1
Govind Sankar Madhavan Pillai Ramachandran Nair
2023년 7월 25일
카테고리
도움말 센터 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!