how to import a file in MATLAB?

3 views (last 30 days)
Jesus
Jesus on 3 Oct 2013
Answered: Gautam PAL on 16 Oct 2013
I want to import a file (.dat or txt) in MATLAB, which contains numbers and NaN in some columns.
My file looks like this:
Name:
Day: 5/07/21998
UT LT hpp fpH SSP EF GG
0.0808 21.0808 227 - - N
0.1732 21.1732 300 4.7 340 - N
0.2533 21.2533 237 4.6 335 - N
0.3333 21.3333 249 - - N
0.4233 21.4233 251 - - N
0.5033 21.5033 244 4.6 328 - N
0.5833 21.5833 256 - - N
0.6733 21.6733 253 4.7 330 - N
  2 Comments
Walter Roberson
Walter Roberson on 3 Oct 2013
Do any values before the UT heading need to be imported? Which of the columns do you want read in? For example the EF column is shown here as always "-", but should that be skipped or read in? In the SSF column, should the blank entries be important as 0 or as NaN or should the column be imported as string without numeric interpretation?
Jesus
Jesus on 3 Oct 2013
Edited: Jesus on 3 Oct 2013
1- No. The data before UT does not need to be imported.
2- I'd like to read all the columns (UT, LT, hpp, fph, SSP, EF, GG). UT( float), LT (float), hpp(float), fpH(float), SSP(float), EF(string or char), GG (string or char).
Note: each column is separated by tab

Sign in to comment.

Accepted Answer

Nishitha Ayyalapu
Nishitha Ayyalapu on 14 Oct 2013
Edited: Nishitha Ayyalapu on 14 Oct 2013
You could use
readtable
Lets say your data is in testdata.txt then following would create a table "T" with 7 columns, 8 rows and also saves column headers (UT, LT, hpp..etc).
to access UT column you would do
T.UT
However, with this approach fpH to hold all numeric data as float, the '-' entries are treated as empty and are recorded as nan.
T = readtable('testdata.txt','Delimiter','\t','HeaderLines',3,...
'TreatAsEmpty','-','Format','%f%f%f%f%f%s%s');
If fpH has to hold '-' entries and also the numeric data, fpH can be read as a string. But all the numeric data is also recorded as string
T = readtable('testdata.txt','Delimiter','\t','HeaderLines',3,...
'Format','%f%f%f%s%f%s%s');
  3 Comments
Walter Roberson
Walter Roberson on 15 Oct 2013
Edited: Walter Roberson on 15 Oct 2013
readtable() is very new. You can convert Nishitha's code as:
fid = fopen('testdata.txt', 'r');
T = textscan(fid, '%f%f%f%f%f%s%s', 'Delimiter','\t','HeaderLines',3,...
'TreatAsEmpty','-');
fclose(fid);
then the various columns are T{1}, T{2} and so on. But HeaderLines is perhaps 5 rather than 3.
Jesus
Jesus on 15 Oct 2013
Nishitha Ayyalapu and Walter Roberson, thank you. The TextScan worked perfectly in MatLab (R2006b).

Sign in to comment.

More Answers (1)

Gautam PAL
Gautam PAL on 16 Oct 2013
How to read video file using matlab..?

Categories

Find more on Large Files and Big Data in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!