Filtering for the selected data on table

2 views (last 30 days)
how can i make filter for coloumb on table like excel?

Accepted Answer

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 30 Sep 2021
It can be done in a few different ways. One of them is, e.g.:
A = randi([10, 90],5, 3)
T = array2table(A, 'variablenames', {'V1', 'V2', 'V3'})
V1 = sort(T.V1, 'ascend');
T.V1 = V1
Or using the GUI as shown in the attached screenshot here:

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!