how to name matfile from variable name

16 visualizaciones (últimos 30 días)
kev111
kev111 el 9 de Jun. de 2016
Respondida: Shameer Parmar el 10 de Jun. de 2016
I am trying to allow end users to name the .mat file that will save current settings as a preset.
What have tried so far is:
presetName = inputdlg({'Enter a name for the Preset'},'Preset');
%presetNameMat = strcat( presetName,'.mat');
save('presetName');
SaveUserSettings(handles);
Which saves everything in a file called presetName.mat - and not a .mat file named from the variable presetName. If I try and pass the value instead I get : Error using save Argument must contain a string.

Respuesta aceptada

Star Strider
Star Strider el 9 de Jun. de 2016
This should work:
presetNameCell = inputdlg({'Enter a name for the Preset'},'Preset');
presetName = presetNameCell{:};
save(presetName);
You can of course combine them as:
save(presetNameCell{:});
I broke them out into separate lines so you can see how the code works.
  2 comentarios
kev111
kev111 el 9 de Jun. de 2016
Brilliant, many thanks.
Star Strider
Star Strider el 9 de Jun. de 2016
My pleasure!

Iniciar sesión para comentar.

Más respuestas (1)

Shameer Parmar
Shameer Parmar el 10 de Jun. de 2016
Hi Kev111,
In your code, simply replace the line
save('presetName');
with
save(char(presetName));
and try..

Categorías

Más información sobre Big Data Processing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by