How to read GSI (text) file?

조회 수: 4 (최근 30일)
Geo19
Geo19 2021년 11월 8일
댓글: Geo19 2021년 11월 8일
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.

채택된 답변

Chris
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?
  댓글 수: 2
Chris
Chris 2021년 11월 8일
If you need to get rid of the + and ...
parsedmore = [];
for idx = 1:12
parsedmore = [parsedmore, split(parsed(:,idx),{'+','...'})];
end
Valid numbers can then be cast to doubles
firstcol = double(parsedmore(:,1));
Geo19
Geo19 2021년 11월 8일
That's exacly what i need.
Thank you very much :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Beamforming and Direction of Arrival Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by