where you saved the file upload? using GUI
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (1)
Ashish Gudla
le 6 Août 2014
Modifié(e) : Ashish Gudla
le 6 Août 2014
0 votes
"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 commentaire
Juan Espinoza
le 6 Août 2014
Catégories
En savoir plus sur Search Path dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!