필터 지우기
필터 지우기

How to read data out of a .txt-File?

조회 수: 5 (최근 30일)
Philipp Mueller
Philipp Mueller 2021년 5월 17일
편집: Monika Jaskolka 2021년 5월 17일
Hello,
I have a .txt-File. How can I read the data? Only the values not the headers.
->
0.0000000000e+00 -9.2010301749e+00
2.0000000000e-03 -9.2061877312e+00
4.0000000000e-03 -9.2118709835e+00
Here is my whole .txt-File:
CharacterEncoding=windows-1213
ColumnSeperator=\t
DecimalSeparator=.
Filename testobj.txt
PreparedBy
Date 2025-06-18
Samplingrate 5000
NumberOfDataPoints 100000
NumberOfTest 1987
NameOfTest ABC
NumberOfChannels 7
ChannelNumbers
0 86767
ChannelNames
time 34343
ChannelUnits
[s] [mm]
DATA
0.0000000000e+00 -9.2010301749e+00
2.0000000000e-03 -9.2061877312e+00
4.0000000000e-03 -9.2118709835e+00

채택된 답변

Stephen23
Stephen23 2021년 5월 17일
M = readmatrix('temp.txt','HeaderLines',18)
M = 3×2
0 -9.201030174900000 0.002000000000000 -9.206187731200000 0.004000000000000 -9.211870983500001

추가 답변 (1개)

Monika Jaskolka
Monika Jaskolka 2021년 5월 17일
편집: Monika Jaskolka 2021년 5월 17일
format longE
T = readtable('textfile.txt', 'NumHeaderLines', 18);
T =
3×2 table
Var1 Var2
____________________ _____________________
0.00000000000000e+00 -9.20103017490000e+00
2.00000000000000e-03 -9.20618773120000e+00
4.00000000000000e-03 -9.21187098350000e+00

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by