switch column of table
Afficher commentaires plus anciens
If you have a table called A. And this table has three columns. How can you replace column three with column two?
6 commentaires
A = [1 2 3; 2 3 4; 3 5 6]
A =
1 2 3
2 3 4
3 5 6
A(:,3)=A(:,2)
A =
1 2 2
2 3 3
3 5 5
Eliah, I have noticed you have asked a few questions, however have never selected an answer as accepted. This would be helpful for the community as it makes helpful solutions stand out, which could then help other people who are facing the similar issues.
Walter Roberson
le 24 Mai 2018
The above will not work exactly as written for a table() object. However you can use
A{:,3} = A{:,2};
Eliah Verbeemen
le 25 Mai 2018
Walter Roberson
le 25 Mai 2018
Are you sure that you are using a table() object and not a cell array or numeric array? And are you sure that your table object has three columns already?
Eliah Verbeemen
le 25 Mai 2018
Walter Roberson
le 25 Mai 2018
Please do not close questions that have an Answer.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!