get the name of mat file loaded by command "uiopen" ?

5 visualizaciones (últimos 30 días)
Brasco , D.
Brasco , D. el 13 de Jun. de 2014
Comentada: Junho Kweon el 20 de Mzo. de 2019
hi guys,
let say i got more than 5 mat files in my current directory and i am using " uiopen " to select one of them.
abcde.mat
qwert.mat
ghgdsfs.mat ....
i also need to get the name of the loaded mat file. ('abde.mat' or the one whic is selected )
is there any way to get the name of loaded mat file with out saving it with a different name or etc.
thanks for help
  2 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 13 de Jun. de 2014
Maybe you mean the names of your variables
Brasco , D.
Brasco , D. el 13 de Jun. de 2014
no i watn the name of the mat file. not the variables in it.

Iniciar sesión para comentar.

Respuestas (3)

Azzi Abdelmalek
Azzi Abdelmalek el 13 de Jun. de 2014
Editada: Azzi Abdelmalek el 13 de Jun. de 2014
[file,path]=uigetfile('*.mat','select a amt file'),
filename=fullfile(path,file)
  1 comentario
Junho Kweon
Junho Kweon el 20 de Mzo. de 2019
I like this way. Sometimes, I need to load files which are in different location.
Thanks for your idea :)

Iniciar sesión para comentar.


Dishant Arora
Dishant Arora el 13 de Jun. de 2014
Use uigetfile instead.
fileName = uigetfile('*.mat');
load(fileName)

Joseph Cheng
Joseph Cheng el 13 de Jun. de 2014
How are you selecting them? GUI, hard coded, determined by set of parameters, etc? because since you're using uiopen you are putting a string into the function which you could have set that into a variable before.
example:
%%you've hard coded
uiopen('abcde.mat');
%%could have been implemented as
LoadedMatName_1= 'abcde.mat';
uiopen(LoadedMatName);
So it all depend on how you're selecting the files. if it is user input you can store the selected one when they choose but how to implement depends on how you let the user select the file.
  1 comentario
Brasco , D.
Brasco , D. el 13 de Jun. de 2014
i am using
uiopen ('mat')
thats it. just loading the selected mat file. nothing more.

Iniciar sesión para comentar.

Categorías

Más información sobre Develop uifigure-Based Apps 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!

Translated by