Importing only a fraction of a database using dataset

1 Ansicht (letzte 30 Tage)
I have a large dataset in csv format (400MB). How can I import in MatLab only the first 500 rows?
  1 Kommentar
Sebastiano delre
Sebastiano delre am 14 Mai 2016
Actually csvread does not work for me because my data contain not only numerical variables. I have also strings and cells. Is there a way I can use the function dataset?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 14 Mai 2016
nc=6; % Number of column in your csv file
nr=500
data=csvread('file.csv',0,0,[0 0 nr-1 nc-1])
  4 Kommentare
Walter Roberson
Walter Roberson am 14 Mai 2016
xlsread() accepts range arguments.
You have R2013b according to your other postings; you could consider readtable() . I do not know how fast that would be; I seem to remember later releases made it faster.
Sebastiano delre
Sebastiano delre am 15 Mai 2016
Actually I have R2014b now. readtable() works fine and it is very very fast. Thanks!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by