Change a variable name in a dataset array
Ältere Kommentare anzeigen
I would like to change the name of one of the variable names in a dataset array. I can do it like this
temp=get(DS);
vn=temp.VarNames;
vn{3}='new name';
set(DS,'VarNames',vn);
Is there an easier way to do this?
Akzeptierte Antwort
Weitere Antworten (1)
dk
am 14 Okt. 2011
0 Stimmen
Kategorien
Mehr zu Managing Data finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!