Counting consecutive negative numbers in an array

6 次查看(过去 30 天)
Hello, I need to find how many times consecutive negative numbers are in the array. For example:
v = [11 2 3 -1 -2 1 -1 -1 -3 1 3 -1];
The answer must be: 3
Thank you

采纳的回答

Bruno Luong
Bruno Luong 2020-11-24
编辑:Bruno Luong 2020-11-24
length(strfind([false v<0],[0 1]))
or
sum(diff([false v<0])==1)
  3 个评论
Bruno Luong
Bruno Luong 2020-11-24
编辑:Bruno Luong 2020-11-24
How do you get 2?
>> v= [11 2 3 -1 -2 1 -1 -1 -3 1 3 -1]
v =
11 2 3 -1 -2 1 -1 -1 -3 1 3 -1
>> length(strfind([false v<0],[0 1]))
ans =
3
>> sum(diff([false v<0])==1)
ans =
3
BN
BN 2020-11-24
Thank you so much. I forgot to use the clear command then try the code. After that, your code works very well.
Thank you it is really helpful for me

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by