I have a table in MATLAB with variable titles equal to:
titles = {'TZ_1', 'TZ_2', 'TZ_3', 'DATE'};
Is there any way to move change the data to have the DATE
before TZ_1
?
titles = {'DATE', 'TZ_1', 'TZ_2', 'TZ_3'};
I can see movevars
in the 2022 version, but I am currently running the 2016 version.
Any help would be appreciated - I am relatively new to MATLAB.
You can do it by name
You can of course do this without the intermediate variable
Extension:
If you just know you want
'DATE'
at the front regardless where it currently is in the order, you could do something like