table variable name based on array
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Azura Hashim
am 29 Jul. 2016
Kommentiert: Azura Hashim
am 30 Jul. 2016
Hi, is it possible to assign table variable name based on strings in an array. For example:
colnames={'a' 'b'};
a=[1;2];
b=[3;4];
c=table();
c.colnames{1}=a;
c.colnames{2}=b;
Thank you.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Steven Lord
am 29 Jul. 2016
Set the VariableNames of the table when you create it.
colnames = {'a' 'b'};
a = [1;2];
b = [3;4];
c = table(a, b, 'VariableNames', colnames)
Or change them later by assigning to the VariableNames property of the table.
newnames = {'Alice', 'Bob'};
c.Properties.VariableNames = newnames
Siehe auch
Kategorien
Mehr zu Tables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!