Find the consecutive positive and negative elements for the entire array

15 views (last 30 days)
Hello all, I have a channel from which I take around 1 million samples now it contains both positive and negative values in it. My intention is to find the consecutive positive and negative integers(doesn't have to be same) and perform some operations on it. I have given my code below. chA is my channel from where i derive my inputs as values. The code is only giving me a value of 43.2600, which ideally should have given an array of numbers as there are lots of samples which are consecutive positive and negative.
for i = 1:1000000
if (chA(i)<0) && (chA((i+1) >0))
tan = ((chA(i+1))- chA(i));
deltaOfTime = tan/i;
end
thanks
  5 Comments
Jayanta Deb
Jayanta Deb on 8 Mar 2017
Hi, your answer helped me, but sorry i cant thumbs up as i think i am not eligible to do so. its disabled. Anyways thanks :)
Jan
Jan on 8 Mar 2017
Edited: Jan on 8 Mar 2017
@Jayanta Deb: You can accept and vote answers only, not your own question. When you are able to add a comment, you should have the power to vote also. Accepting an answer is useful for the forum, because the readers see, that the problem is solved.
If would be interesting to know and valuable for the forum, if these approaches are useful for your problem:
index = find(chA(1:end-1) < 0 & chA(2:end) > 0);
% Or: index = find(diff(chA < 0)); % For both directions
deltaOfTime = (chA(index + 1) - chA(index)) ./ index;

Sign in to comment.

Accepted Answer

Jan
Jan on 7 Mar 2017
Edited: Jan on 7 Mar 2017
If you want the start indices and the lengths of the runs: With FEX: RunLength:
x = randn(1, 1e6);
[B, N, Index] = RunLength(x < 0);
negStart = Index(B);
negLen = N(B);
posStart = Index(~B);
posLen = N(~B);
[EDITED]
Perhaps you want something like this:
deltaOfTime = zeros(1, 1000000); % Pre-allocate
c = 0;
for i = 1:1000000 - 1 % -1 to support chA(i+1)
if (chA(i) < 0) && (chA(i+1) >= 0)
% if (chA(i) < 0) == (chA(i+1) >= 0) % if both directions are wanted
c = c + 1;
deltaOfTime(c) = (chA(i+1) - chA(i)) /i;
end
end
deltaOfTime = deltaOfTime(1:c); % Crop unused elements
If this solves your problem, you can "vectorize" the code to increase the speed:
index = find(chA(1:end-1) < 0 & chA(2:end) > 0);
deltaOfTime = (chA(index + 1) - chA(index)) ./ index;
Or if you want to find both transicients even simpler:
index = find(diff(chA < 0));
deltaOfTime = (chA(index + 1) - chA(index)) ./ index;
NOTE: Using "tan" as name of a variable might be confusing, if the function tan() is used later on. Better avoid shadowing the names of built-in functions.
  6 Comments
Star Strider
Star Strider on 8 Mar 2017
Edited: John Kelly on 8 Mar 2017
If an Answer was unaccepted, only the OP has the ability to do it during the first 7 days after a Question is posted.
Neither Jan Simon nor anyone else with Editor privileges are able to accept or unaccept Answers during that time.
No one gets Reputation Points for accepting their own Answers.
DARSHAN N KANNUR
DARSHAN N KANNUR on 29 Mar 2021
I just have an array of 76140 data. What to do, if I want to know the starting index of consecutive negative elements and also thier count. Thank you in advance

Sign in to comment.

More Answers (1)

John BG
John BG on 7 Mar 2017
Edited: John BG on 7 Mar 2017
Jayanta
you are almost there, all left is is
1.
to accumulate the indices that your loop is already finding. You current loop only keeps the last zero crossing.
and
2.
include both transitions - to + and + to -
One way of doing both things would be
L=0
if ((chA(i)<0) && (chA((i+1) >0))) || ((chA(i)>0) && (chA((i+1) <0)))
L=[L i];
end
L=[]
if you find this answer useful would you please be so kind to mark my answer as Accepted Answer?
To any other reader, please if you find this answer of any help solving your question,
please click on the thumbs-up vote link,
thanks in advance
John BG
  2 Comments
DARSHAN N KANNUR
DARSHAN N KANNUR on 29 Mar 2021
I just have an array of 76140 data. What to do, if I want to know the starting index of consecutive negative elements and also thier count. Thank you in advance

Sign in to comment.

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!