where you saved the file upload? using GUI
Mostrar comentarios más antiguos
I'm making a guide in Matlab and I have some problems for Load Data!
I want know where they are saved? because i need this file in a specific folder.
[FileName Path]=uigetfile('*.dat','Batimetría');
if FileName == 0
return
end
I would appreciate your prompt response.
Regards
Respuesta aceptada
Más respuestas (1)
Ashish Gudla
el 6 de Ag. de 2014
Editada: Ashish Gudla
el 6 de Ag. de 2014
0 votos
"uigetfile" function returns only the filename and path of the file. It does not upload the file. You can read more about this in the doc page
Once you have the file name and the path (location of the file) you can then use the appropriate file read/write functions depending on the type of file.
1 comentario
Juan Espinoza
el 6 de Ag. de 2014
Categorías
Más información sobre Search Path en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!