extract numbers from cell array
105 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
alex
le 10 Mai 2014
Commenté : Sebastian Lopez
le 19 Avr 2023
hello!
i have this cell array wich may have many cells,and not only three as here.
A = {'jdldi'; 'jdks5.4555h'; 'f67'}
i want to extract only the numbers,and show them as one number
for this example i want the result to be 5.455567
any help please?
Thank you very much!
2 commentaires
Réponse acceptée
Azzi Abdelmalek
le 10 Mai 2014
A = {'jdldi'; 'jdks5.4555h'; 'f67'}
b=regexp(A,'\d+(\.)?(\d+)?','match')
out=str2double([b{:}])
3 commentaires
Azzi Abdelmalek
le 10 Mai 2014
Modifié(e) : Azzi Abdelmalek
le 10 Mai 2014
A = {'jdldi'; 'jdks5.4555h'; 'f67'}
b=regexp(A,'\d+(\.)?(\d+)?','match')
out=strjoin([b{:}],'')
Plus de réponses (2)
Andrei Bobrov
le 10 Mai 2014
A1 = regexp(A,'[\d*\.]*\d*','match')
A2 = [A1{:}]
out = str2double(strcat(A2{:}))
0 commentaires
Voir également
Catégories
En savoir plus sur Numeric Types dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!