Skipping lines in datastore with read function

8 次查看(过去 30 天)
Hello, I would like to access only to certain lines (rows) in my datastore and save them to a matrix. What I am doing now is:
1. Read all the datastore and save the data in a matrix.
2. Eliminate the data I don't want (by removing rows from the matrix).
It works, but I'm wasting a lot of time storing useless data in the first step. Is it a way to directly save the data that I want?
Information: my datastore is a collection of files, all of them with the same structure: two columns filled with numeric data. Each file has 100 rows, but I only want to save the first 60.
Thanks!

采纳的回答

Amogh Bhole
Amogh Bhole 2021-8-6
As per my understanding you are interested in reading only the top 60 rows from each file. It can be done efficiently using “readcell” function.
For each file you can use the below code to read top 60 rows:
C = readcell(filename,'Range',1:60);
Then save it in the matrix.
You can refer to this link for more information.
  1 个评论
Fernando Meneses
Fernando Meneses 2021-8-6
Thanks Amogh!
I used this function but I had to make a small change because I had the following error with the Range:
C = readcell(filename,'Range',1:60);
ERROR:
A numeric range must be 1, 2, or 4 positive integers of the form:
[start-row, start-column, end-row, end-column], where end>=start or
[start-row, start-column] or
[start-row].
I solved it by using the Excel format:
C = readcell(filename,'Range',A1:B60);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Datastore 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by