Note, this error does not appear when I run this on MATLAB 2017b. In that version, the Table properties display fine. 
Table properties giving error
    4 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Zachary Eilon
 le 23 Fév 2021
  
    
    
    
    
    Commenté : Zachary Eilon
 le 23 Fév 2021
            I am trying to view a table's properties, and MATLAB is throwing an odd error. This even happens when I am using very stripped-down code. See attached. 

clear all
load patients % demo dataset
T = table(LastName,Age,Smoker,Weight); % make a table
summary(T) % table made...
T.Properties.VariableNames % prove Properties are there...
T.Properties % throws error!
Réponse acceptée
  Walter Roberson
      
      
 le 23 Fév 2021
        You have a third-party function named split on your MATLAB path.
which -all split
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Tables 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!

