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?

2 次查看(过去 30 天)
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 个评论
Jiro Doke
Jiro Doke 2016-11-10
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');

请先登录,再进行评论。

回答(0 个)

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by