How to separate Variables Names from the Data in Two Different table
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Alikouider
il 11 Dic 2021
Commentato: Star Strider
il 11 Dic 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 Commenti
Risposta accettata
Star Strider
il 11 Dic 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown 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!