memmapfile & char inputs
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
Respuestas (1)
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
Ver también
Categorías
Más información sobre Large Files and Big Data 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!