フィルターのクリア

How to convert a string of characters to numbers?

1 回表示 (過去 30 日間)
carlos Uribe
carlos Uribe 2012 年 9 月 28 日
I have the following string obtained from a text file (the text file has a lot of info so I had to go and look for certain lines):
0 0 0 0 0.1 0 0 0 BlaBla
Another line might look like this
1 0.013 0.0156 -0.104 0.0376 0.0624 0.132 0.132 BlaBlaBla
By the way I'm reading the file everything is now a string of characters.
How can I convert that to a vector? Notice that the last column is a string of characters. The white spaces on the first line is different than on the second one too.
Any help is appreciated thanks.

採用された回答

Matt Fig
Matt Fig 2012 年 9 月 28 日
編集済み: Matt Fig 2012 年 9 月 28 日
str = '1 0.013 0.0156 -0.104 0.0376 0.0624 0.132 0.132 Bla';
T = regexp(str,'-*\d*\.*\d*','match');
V = cellfun(@str2double,T)
  7 件のコメント
carlos Uribe
carlos Uribe 2012 年 9 月 28 日
My bad..didn't see that you added two new values to cellfun...thanks for your help
Matt Fig
Matt Fig 2012 年 9 月 28 日
Jan, that returns nans here...

サインインしてコメントする。

その他の回答 (1 件)

Jan
Jan 2012 年 9 月 28 日
str = '1 0.013 0.0156 -0.104 0.0376 0.0624 0.132 0.132 Bla';
V = sscanf(str, '%g', 6);
  1 件のコメント
Matt Fig
Matt Fig 2012 年 9 月 28 日
Or for cell str:
V = cellfun(@(x) sscanf(x, '%g'),str,'Un',0);
Very nice... no call to REGEXP.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by