How do i delete a repeating row

1 visualización (últimos 30 días)
Emil Sandholt Feld
Emil Sandholt Feld el 7 de Mayo de 2022
Editada: Emil Sandholt Feld el 13 de Mayo de 2022
Hello guys
I am trying to delete rows that has the same string value in collumn 1, but when I run the script nothing changes. Does anybody know what is wrong?

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 7 de Mayo de 2022
Modified from this example
[C,ia] = unique(grades{:, 1});
B = grades(ia,:)
See this page for alternate ways to access data in a table.

Más respuestas (1)

Image Analyst
Image Analyst el 7 de Mayo de 2022
Try this. Adapt as needed
m = [1,2,3;4,5,6;4,5,6;7,8,9]
m = 4×3
1 2 3 4 5 6 4 5 6 7 8 9
diffRows = diff(m, 1)
diffRows = 3×3
3 3 3 0 0 0 3 3 3
% Delete second row if it's a duplicate and adjacent.
rowsToDelete = find(all(diffRows == 0, 2)) + 1
rowsToDelete = 3
m(rowsToDelete, :) = []
m = 3×3
1 2 3 4 5 6 7 8 9
% Alternatively delete first row if it's a duplicate and adjacent.
% rowsToDelete = find(all(diffRows == 0, 2))
% m(rowsToDelete, :) = []

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by