How to separate Variables Names from the Data in Two Different table
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Alikouider
le 11 Déc 2021
Commenté : Star Strider
le 11 Déc 2021
Hello,
I have been able to read my excel file and to create my table using this code:
T = readtable('Data.xlsx','TextType','string');
I would like to separate them in 2 differents tables one with variables names and one with the data
because my list of variable name is very long.
like following:
varnames = ["Var1""Var2"..."VarN"]
data =["BOB" "london" "BIM" "Alfred" "Paris" "BOB" "John" "BOB" "CEF"]
Thanks for your understanding
Have a nice day.
0 commentaires
Réponse acceptée
Star Strider
le 11 Déc 2021
Perhaps something like this —
T1 = array2table(randi(99, 10, 5))
T2 = T1;
T2.Properties.VariableNames = {'Alpha','Beta','Gamma','Delta','Epsilon'}
Make appropriate changes to get the desired result.
.
4 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Startup and Shutdown 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!