Error using strfind Conversion to double from table is not possible.
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 25 Juil 2023
0 votes
temp2 = strfind(dataTimeColumn{1,1},'T')
Catégories
En savoir plus sur Tables dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!