Saving work space with a name from a variable
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    RANJITH REDDY KALLURI
 il 18 Ott 2016
  
    
    
    
    
    Risposto: Image Analyst
      
      
 il 18 Ott 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 Commenti
Risposta accettata
  Image Analyst
      
      
 il 18 Ott 2016
        Try this:
filename = sprintf('%s.mat', test.value); % where test.value is a string variable.
save(filename);
0 Commenti
Più risposte (1)
Vedere anche
Categorie
				Scopri di più su Linear Algebra in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


