フィルターのクリア

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 ビュー (過去 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');
Nayani Ilangakoon
Nayani Ilangakoon 2016 年 11 月 11 日
Thank you so much Jiro. I will try in this way.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeLarge Files and Big Data についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by