extract numbers from cell array
104 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
alex
el 10 de Mayo de 2014
Comentada: Sebastian Lopez
el 19 de Abr. de 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 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 10 de Mayo de 2014
A = {'jdldi'; 'jdks5.4555h'; 'f67'}
b=regexp(A,'\d+(\.)?(\d+)?','match')
out=str2double([b{:}])
3 comentarios
Azzi Abdelmalek
el 10 de Mayo de 2014
Editada: Azzi Abdelmalek
el 10 de Mayo de 2014
A = {'jdldi'; 'jdks5.4555h'; 'f67'}
b=regexp(A,'\d+(\.)?(\d+)?','match')
out=strjoin([b{:}],'')
Más respuestas (2)
Andrei Bobrov
el 10 de Mayo de 2014
A1 = regexp(A,'[\d*\.]*\d*','match')
A2 = [A1{:}]
out = str2double(strcat(A2{:}))
0 comentarios
Ver también
Categorías
Más información sobre Numeric Types en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!