switch column of table
Mostrar comentarios más antiguos
If you have a table called A. And this table has three columns. How can you replace column three with column two?
6 comentarios
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
el 24 de Mayo de 2018
The above will not work exactly as written for a table() object. However you can use
A{:,3} = A{:,2};
Eliah Verbeemen
el 25 de Mayo de 2018
Walter Roberson
el 25 de Mayo de 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
el 25 de Mayo de 2018
Walter Roberson
el 25 de Mayo de 2018
Please do not close questions that have an Answer.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!