how to split character data in string and double?
Mostra commenti meno recenti
Hello,
I'm having difficulties separating character arrays. I want to split the char strings below and retrieve the numeric values.
'Time 12:57:33'
'Temp. T2 [deg.C] = 36.6'
'Solar Irradiance [kW/m^2] 0.857101'
Can anybody help me? Im new to Matlab and I know this should be an easy task, but im having quite some trouble with it.
Thanks in advance, greetings Boudewijn
Risposta accettata
Più risposte (1)
Azzi Abdelmalek
il 28 Feb 2014
Modificato: Azzi Abdelmalek
il 28 Feb 2014
str='Time 12:57:33'
out=regexp(str,'\d+(\.)?(\d+)?','match')
1 Commento
Azzi Abdelmalek
il 28 Feb 2014
Modificato: Azzi Abdelmalek
il 28 Feb 2014
If your data are stored like:
v={'Time 12:57:33','Temp. T2 [deg.C] = 36.6','Solar Irradiance [kW/m^2] 0.857101';'Time 12:57:33' ,'Temp. T2 [deg.C] = 36.6','Solar Irradiance [kW/m^2] 0.857101'}
out=regexp(v,'[\d:]+(\.)?(\d+)?$','match')
out=[ [out{:,1}]' [out{:,2}]' [out{:,3}]']
Categorie
Scopri di più su Solar Power in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!