How do I delete specific elements from a matrix?
1 次查看(过去 30 天)
显示 更早的评论
How do I delete numbers >10 or <-10 from the matrix?
0 个评论
采纳的回答
Paolo
2018-6-9
Tijdgoed((Tijdgoed > 10 | Tijdgoed <-10)) = [];
You can confirm by using:
find(Tijdgoed>10)
find(Tijdgoed<-10)
which return empty vectors.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!