How do I delete specific elements from a matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Paolo
el 9 de Jun. de 2018
Tijdgoed((Tijdgoed > 10 | Tijdgoed <-10)) = [];
You can confirm by using:
find(Tijdgoed>10)
find(Tijdgoed<-10)
which return empty vectors.
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!