Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
reading a large binary file in MATLAB
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
I have to read in a large Binary file whose size is 92,504 KB. When I am using fread command MATLAB is giving me error
Error using fread Out of memory. Type HELP MEMORY for your options.
I tried to restart MATLAB also so that if I am using any virtual memory it should be cleared but still the problem persists.
How can I solve this problem of reading data.
8 comentarios
Respuestas (1)
Walter Roberson
el 5 de Jul. de 2013
fread(fid,'uint8') reads uint8 data and converts it to double. You should leave it as uint8 using fread(fid,'*uint8')
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!