Borrar filtros
Borrar filtros

memmapfile & char inputs

2 visualizaciones (últimos 30 días)
Graziano
Graziano el 6 de Jul. de 2011
Hi all, as I have to work with a massive ammunt of data, I have decided to give a try to memmapfile. As moust of you already know this allow me to map matlab to the the file without the need to import into matlab workspace.
The issue thought is the following: the txt file i am mapping contains both strings (i know which columns contain strings) and NA. I know I can specify multiple data format but it seems there's not the possibility to specify a char class.
Can I have some hint or a workaround to solve my problem?
Thanks!
Graziano
  2 comentarios
Jan
Jan el 6 de Jul. de 2011
What is "NA"?
Oleg Komarov
Oleg Komarov el 6 de Jul. de 2011
Should be NaN/missing

Iniciar sesión para comentar.

Respuestas (1)

Jan
Jan el 6 de Jul. de 2011
MEMMAPFILE cannot handle files which contain blocks of different size, e.g. text lines with varying length. So either use MEMMAPFILE to treat the complete file as a single stream of bytes, or decide to use the standard methods for serialized file reading.
Look in the examples of "doc memmapfile".
  2 comentarios
Graziano
Graziano el 7 de Jul. de 2011
Thank you very much for your answer. I do appreciate it a lot. By serialized reading do you mean functions like fread? ...
Jan
Jan el 7 de Jul. de 2011
Yes. FREAD, FGETL, FGETS might by appropriate.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by