How to define the range for reading a csv file
2 views (last 30 days)
Show older comments
Hello,
I have the following problem.I have a batch of .csv files that have the following format:
[10 rows of text data]
[useful numerical data varying number of rows x 40colums]
[10 rows of text data always starting with the specific word "ACP"]
[useful numerical data varying number of rows x 40colums]
What I need to do is to focus only to the numerical data. So,I need a way to detect for every fileat which point starts the second part of the text data and neglect it.In other words,I want to find the range of the first and the second part of the numerical data.
Thanks in advance.
0 Comments
Answers (2)
Image Analyst
on 14 Apr 2014
I think that second batch of text lines in between the numerical data is what ruins it for you and prevents you from using functions like csvread(), readtable(), or importdata(). So I think you'll have to make a little custom routine to go through it line by line with textscan() or fgetl() and sscanf() to extract the data only when your line does not start with ACP. Use strfind() to see if ACP is on each line.
0 Comments
Alberto
on 14 Apr 2014
The problem here is that you can't predict how many rows the numerical data will have.
I recommend extract all using a generic command, like textscan for example, and then try to convert the types you get to numeric. If it can be done, that will be your desired data; if cannot then its textdata so it can be ignored.
3 Comments
Alberto
on 14 Apr 2014
You are right, the problem with the first block is we don't know when to stop scanning before text.
See Also
Categories
Find more on Cell Arrays 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!