Define the deafult path for uisave

9 visualizaciones (últimos 30 días)
Daniele Favot
Daniele Favot el 24 de Jul. de 2013
Hi everybody,
I'm using the uisave command to store some data, but I can't define the default path that uisave command will use. Is there a way to do it?
Thanks in advance, Daniele

Respuesta aceptada

Daniele Favot
Daniele Favot el 25 de Jul. de 2013
Editada: Daniele Favot el 25 de Jul. de 2013
Setting the current folder with the folder that I want solved my problem:
FileName='Deafult_Monitored_Points.mat'
L1=length(FileName);
location=which(FileName);
L2=length(location);
folder=location(1:[L2-L1-1]);
cd(folder);
uisave({'Data','RowNames','ID_FixedPoints','Color1','Color2','Color3','Color4'},FileName);

Más respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 24 de Jul. de 2013
f='E:\matlab' % For example your default folder
uisave('A',f)
  1 comentario
Daniele Favot
Daniele Favot el 24 de Jul. de 2013
Editada: Azzi Abdelmalek el 24 de Jul. de 2013
This is my actual command line:
uisave({'Data','RowNames','ID_FixedPoints','Color1','Color2','Color3','Color4'},'Default_Monitored_Points');
where 'Default_Monitored_Points' is the default file name.
I'd like to use this:
location=which('Default_Monitored_Points.mat')
and use this variable to set the default path to be sure to overwrite the file that was stored before, but for example:
uisave({'Data','RowNames','ID_FixedPoints','Color1','Color2','Color3','Color4'},'Default_Monitored_Points',location);
doesn't work.

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by