How can I import bin file?
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Hello I am a beginner. I have a binary file and I want to read that and save in a matrix. I tried this code:
FID=fopen('vpt.bin', 'w'); C=fread(FID); fclose(FID); But it just shows the ans=0
I don't know what is the problem?
0 comentarios
Respuesta aceptada
  Iain
      
 el 17 de Jul. de 2013
        You've opened the file for write access.
 fid = fopen('vpt.bin','r');
You either need to be sure that "vpt.bin" is in matlab's current directory to read it or you need to include the path, eg, fid = fopen('D:\vpt.bin','r');
Más respuestas (0)
Ver también
Categorías
				Más información sobre Low-Level File I/O en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

