Clear Filters
Clear Filters

How to change order of a table in matlab

5 views (last 30 days)
how to change order of table in matlab the order is 13x1 or of 14x2 etc and want to change order

Accepted Answer

Image Analyst
Image Analyst on 7 Jul 2018
You can delete columns in a table or add new ones just like any other matrix.
t(:, 2) = []; % Delete column 2.
You can use the table() function to create new tables with new data vectors.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!