Restricting a vector size
2 次查看(过去 30 天)
显示 更早的评论
Hi! I have a vector. I want to select values above a certain value and below a certain value eg: a=[1 2 3 4 5 6 7 8 9 10] I want to select all values between 2 and 6. How can I do that?
Thanks
0 个评论
采纳的回答
更多回答(1 个)
Steven Lord
2017-8-30
Use logical indexing as described in the documentation, this post from Steve's blog or this post from Loren's blog. You want elements that satisfy the logical condition (greater than or equal to 2) and (less than or equal to 6) [I'm assuming "between" is inclusive in your question.]
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!