Using find between two points
35 次查看(过去 30 天)
显示 更早的评论
Hello Everyone,
I am trying to use find in between two points, which is giving me error.
When I use
index = find(x>4)
it gives me all 100 values which are greater than x>4
if I use
index = find((x>4) && (x<6))
It gives me error: Operands to the || and && operators must be convertible to logical scalar
values.
I wanted to know how I can find the values by giving two conditions.
0 个评论
采纳的回答
David Goodmanson
2019-3-11
Hi Darpan,
try it with just one & sign. && is for scalar comparisons, and you have a vector on each side.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!