Borrar filtros
Borrar filtros

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 visualizaciones (últimos 30 días)
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 comentarios
Jiro Doke
Jiro Doke el 10 de Nov. de 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');

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by