table remove repeated columns

I have a table call Values with two fields
Velocity Acceleration
________ ____________
10 30
10 20
20 20
10 30
30 50
and I want to remove the rows that are repeated with are row and therefore get this table
Velocity Acceleration
________ ____________
10 30
10 20
20 20
30 50
thanks!

回答 (1 件)

Niraj Sanghvi
Niraj Sanghvi 2017 年 3 月 16 日

0 投票

I believe the unique function should work in this case:
uniqueValues = unique(Values);

カテゴリ

ヘルプ センター および File ExchangeTables についてさらに検索

質問済み:

2017 年 3 月 15 日

回答済み:

2017 年 3 月 16 日

Community Treasure Hunt

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

Start Hunting!

Translated by