Finding an initial point, then skipping a certain amount of points.

2 views (last 30 days)
So here is what I've done so far. t=1:.5:50; randn('state',0); x=sin(2*pi*t); x=2*randn(size(t)); plot(x)
In order to create a random wave form. Now I wish to find the first point over 2, but then skip the next 5 points, regardless if its greater than 2 or not. Then I wish to skip the next five points again, and so forth until the end. This is a mere practice exercise for me, and I am still a learning student. Thanks in advance.
  4 Comments
Benjamin
Benjamin on 3 Sep 2011
Because In that question, I wanted to find points greater than two, in this I want to find the first point over the threshold, then skip five points and find the next point regardless of its value.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 3 Sep 2011
wantedvalue = x(find(x>2,1,'first') + 5);
  2 Comments
Oleg Komarov
Oleg Komarov on 3 Sep 2011
Till the end:
x(find(x>2,1,'first'):6:end)
where for skipping I consider that you wanna leave five in between.

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices 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!