In/out signal from vector

7 views (last 30 days)
Cary
Cary on 9 Apr 2016
Commented: Azzi Abdelmalek on 9 Apr 2016
Imagine I have the following vector:
0 0 0 0 0 1 1 1 0 0 1 1 1 1 1 0 0 0 1 1 1 1 1 1
The signal from the vector should be interpreted as follows: In at the 6th element, out at the 9th, in again at the 11th element, back out at the 17th, and finally back in at the 19th element through the end. What branch of code should I be using to tell me to get in at 6,11,19 and get out at 9,16?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 9 Apr 2016
Edited: Azzi Abdelmalek on 9 Apr 2016
v=[0 0 0 0 0 1 1 1 0 0 1 1 1 1 1 0 0 0 1 1 1 1 1 1]
ii1=strfind(v,[0 1])+1
ii2=strfind(v,[1 0])+1
%or
ii1=strfind([0 v],[0 1])
ii2=strfind([v 0],[1 0])
  2 Comments
Cary
Cary on 9 Apr 2016
Thanks Azzi! One more question...what if this was a column vector?

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!