extracting only numeric part from cell array includes character and number
1 回表示 (過去 30 日間)
古いコメントを表示
data=
'0.0253906'
'0.0292969'
'0.03125</'
'0.03125</'
'0.03125</'
'0.0058593'
'0.03125</'
'0.0117188'
'0.0117188'
'0.0234375'
data= 10x1 cell
I need to extract only numeric parts of each row of data. "</" characters of 3-5 and 7th rows need to be removed.
0 件のコメント
採用された回答
ES
2017 年 5 月 24 日
You can use regular expressions on this to filter out data you need. Example
a = regexp(data,'[0-9]+.[0-9]+', 'match')%all numbers of format xyz.abc
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!