How to delete values when value is 3&4 then 7&8 then 11&12....
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
CalebJones
el 13 de Feb. de 2020
Editada: CalebJones
el 15 de Feb. de 2020
I have attached a mat file below.
1 repeates like 162 times
2 repeates like 172 times
I want to
keep 1 & 2
remove 3&4
keep 5&6
remove 7&8
keep 9&10
remove 11&12
so on.......
0 comentarios
Respuesta aceptada
Más respuestas (1)
KSSV
el 13 de Feb. de 2020
If you have an array A...To remove a specific element use:
A(A==val) = [] ;
2 comentarios
Ver también
Categorías
Más información sobre Multidimensional Arrays 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!