Clear Filters
Clear Filters

switch column of table

40 views (last 30 days)
Eliah Verbeemen
Eliah Verbeemen on 24 May 2018
Commented: Walter Roberson on 25 May 2018
If you have a table called A. And this table has three columns. How can you replace column three with column two?
  6 Comments
Eliah Verbeemen
Eliah Verbeemen on 25 May 2018
Finnaly there is a working code. Probably re you right and was I working with a cell array. I have changed a lot of things untill it worked. Trail and error.
Walter Roberson
Walter Roberson on 25 May 2018
Please do not close questions that have an Answer.

Sign in to comment.

Accepted Answer

Akira Agata
Akira Agata on 25 May 2018
Edited: Akira Agata on 25 May 2018
If you have the latest version (R2018a), you can simply do it by movevars function, like:
yourTable = movevars(yourTable,2,'After',3);

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!