How to store variable name AND value in an array?
    9 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Suppose I have some code which produces the following outputs: 
density = 456
pressure = 356 
temperature = 66
How can I store these variables and their names in an array to save them from being printed in the terminal for example?                         
0 Commenti
Risposta accettata
  Chunru
      
      
 il 26 Ago 2022
        density = 456;
pressure = 356 ;
temperature = 66;
% or use struct
a.density = 456;
a.pressure = 356 ;
a.temperature = 66;
0 Commenti
Più risposte (1)
Vedere anche
Categorie
				Scopri di più su Structures 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!


