Clear Filters
Clear Filters

Hi, I have large text files that I am trying get through "datastore". Can we get multiple files into a single datastore? If so, How I can pull out data from each file into separate tall arrays?

4 views (last 30 days)
I tried to get the data from two files. It says that i has got bot files, but I cannot get them into separate tall arrays.
ttds = tabularTextDatastore('K:\geo-cloud-files\home\NayaniIlangakoon','FileExtensions',{'.csv','.txt'})
But the datastore structure shows only the data from one file, not both. Anyone has any ideas how can I pull out data from datastore?
  7 Comments
Jiro Doke
Jiro Doke on 10 Nov 2016
In that case, you shouldn't be creating a single datastore for both files. Instead, you would create one for each:
ds1 = tabularTextDatastore('K:\geo-cloud-files\home\NayaniIlangakoon\140823_161804_1.pls_PULSE.txt');
ds2 = tabularTextDatastore('K:\geo-cloud-files\home\NayaniIlangakoon\L11 - Scanner 1 - 140823_161804_1 - originalpoints.txt');

Sign in to comment.

Answers (0)

Categories

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

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!