table remove repeated columns

2 visualizaciones (últimos 30 días)
Patrick Brown
Patrick Brown el 15 de Mzo. de 2017
Respondida: Niraj Sanghvi el 16 de Mzo. de 2017
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!

Respuestas (1)

Niraj Sanghvi
Niraj Sanghvi el 16 de Mzo. de 2017
I believe the unique function should work in this case:
uniqueValues = unique(Values);

Categorías

Más información sobre Tables en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by