remove the frequent values withou sorting

2 visualizaciones (últimos 30 días)
huda nawaf
huda nawaf el 10 de Jul. de 2022
Comentada: huda nawaf el 11 de Jul. de 2022
hello
I need a function remove the frequent values(keeping the first appearance of value) without using unique because it is making sortg
For example
x=[3 4 3 5 1 0 4 2];
I need x to be
x=[3 4 5 1 0 2]
Thanks in advance

Respuesta aceptada

the cyclist
the cyclist el 10 de Jul. de 2022
You can still use unique:
x = [3 4 3 5 1 0 4 2];
x = unique(x,"stable")
x = 1×6
3 4 5 1 0 2

Más respuestas (0)

Categorías

Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by