Convert vector of characters to doubles/numeric

15 vues (au cours des 30 derniers jours)
James Higgins
James Higgins le 29 Oct 2020
Commenté : James Higgins le 31 Oct 2020
Hi,
I have a column of characters I would like to convert to doubles
'1.0118'
'1.0075'
'1.0064'
'1.0077'
'1.0087'
'1.0213'
'1.0213'
'1.013'
'1.013'
'1.0047'
'1.0039'
'0.9993'
'1.0059'
'1.0047'
'0.9985'
I have tried using str2double but it doesn't seem to work. How would I go about converting this into a column of doubles?
Thank you

Réponses (2)

Ameer Hamza
Ameer Hamza le 29 Oct 2020
Is it available as a cell array. If yes, then try this
x = {
'1.0118'
'1.0075'
'1.0064'
'1.0077'
'1.0087'
'1.0213'
'1.0213'
'1.013'
'1.013'
'1.0047'
'1.0039'
'0.9993'
'1.0059'
'1.0047'
'0.9985'};
y = cellfun(@str2num, x)
  8 commentaires
Ameer Hamza
Ameer Hamza le 31 Oct 2020
You need to use braces instead of parenthesis
date = datetime({S.observations.date}, 'InputFormat','yyyy-MM-dd')
James Higgins
James Higgins le 31 Oct 2020
Thank you! This worked perfectly

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 30 Oct 2020
str2double(cellstr(YourCharacterArray))

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by