Saving work space with a name from a variable
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
RANJITH REDDY KALLURI
el 18 de Oct. de 2016
Respondida: Image Analyst
el 18 de Oct. de 2016
I want to save all the variables of the work space, with the name from variable.
I've tried using
filename = test.value;
save (filename)
0 comentarios
Respuesta aceptada
Image Analyst
el 18 de Oct. de 2016
Try this:
filename = sprintf('%s.mat', test.value); % where test.value is a string variable.
save(filename);
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!