Effacer les filtres
Effacer les filtres

memmapfile & char inputs

2 vues (au cours des 30 derniers jours)
Graziano
Graziano le 6 Juil 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 commentaires
Jan
Jan le 6 Juil 2011
What is "NA"?
Oleg Komarov
Oleg Komarov le 6 Juil 2011
Should be NaN/missing

Connectez-vous pour commenter.

Réponses (1)

Jan
Jan le 6 Juil 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 commentaires
Graziano
Graziano le 7 Juil 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 le 7 Juil 2011
Yes. FREAD, FGETL, FGETS might by appropriate.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by