How to covert rownames to the first variable in the table?
    10 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    monkeyquant
 le 25 Jan 2023
  
    
    
    
    
    Réponse apportée : Star Strider
      
      
 le 25 Jan 2023
            I have a table with rownames (nuemric value) and want to convert it to a table with a newly added variable from the rownames. 
0 commentaires
Réponse acceptée
  Star Strider
      
      
 le 25 Jan 2023
        Try something like this — 
T1 = array2table(randi(9, 5, 5));
T1.Properties.RowNames = {'1','2','3','4','5'}                      % Create Table With Row Names
RN = T1.Properties.RowNames                                         % Get Row Names
T1 = addvars(T1, cell2mat(RN), 'Before','Var1')                     % Convert Row Names To First Variable
T1.Properties.RowNames = {}                                         % Delete Original Row Names
.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Logical dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

