Converting txt file string to matrix.

1 回表示 (過去 30 日間)
Hannah Taylor
Hannah Taylor 2020 年 3 月 31 日
コメント済み: Hannah Taylor 2020 年 3 月 31 日
I have an unhelpful txt file containing a string that looks something like:
{co-ordinates 1.5 2.5 4.8 weighting 11.7}{co-ordinates 2.5 2.8 1.7 weighting 21.4}{co-ordinates 1.5 2.5 4.8 weighting 11.7} .... etc
I'm trying to create a matrix with 4 collums (x co-ord, y co-ord, z co-ord, weighting) from this string. The co-ordinated are separated by a single space, the co-ords and weighting is separated by a double space.
Thanks in advance.
  2 件のコメント
KSSV
KSSV 2020 年 3 月 31 日
Read about textscan.
Hannah Taylor
Hannah Taylor 2020 年 3 月 31 日
Is this similar to sscanf? I've been looking into this but unsure how to go about the 'format spec' part to say e.g. 'read the number after 'co-ordiantes ''

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

採用された回答

Stephen23
Stephen23 2020 年 3 月 31 日
編集済み: Stephen23 2020 年 3 月 31 日
>> str = '{co-ordinates 1.5 2.5 4.8 weighting 11.7}{co-ordinates 2.5 2.8 1.7 weighting 21.4}{co-ordinates 1.5 2.5 4.8 weighting 11.7}';
>> mat = sscanf(str,'{co-ordinates%f%f%f weighting%f}',[4,Inf]).'
mat =
1.5 2.5 4.8 11.7
2.5 2.8 1.7 21.4
1.5 2.5 4.8 11.7
  1 件のコメント
Hannah Taylor
Hannah Taylor 2020 年 3 月 31 日
Thanks that's really helpful! I was struggling to understand the format spec part of sscanf but this has really helped :) life saver!!!

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by