How to read GSI (text) file?
5 ビュー (過去 30 日間)
表示 古いコメント
Hello!
I'm trying to read GSI file (txt file) as matrix. I already tryed with functionc fscan, textscan... but no succes.
The row of GSI file looks like that:
*110002+00000000000000O5 21...2+0000000164794460 22...2+0000000098744500 31...0+00000034287.0000 51....+000000000000+00.000 2021 4 24 10 46 23.790
Thanks for advice/ help.
0 件のコメント
採用された回答
Chris
2021 年 11 月 8 日
A = readlines('Example_of_GSI.txt');
parsed = split(A).strip('*');
Does that break it down enough for you to work with?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!