In/out signal from vector

3 vues (au cours des 30 derniers jours)
Cary
Cary le 9 Avr 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?

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 9 Avr 2016
Modifié(e) : Azzi Abdelmalek le 9 Avr 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 commentaires
Cary
Cary le 9 Avr 2016
Thanks Azzi! One more question...what if this was a column vector?
Azzi Abdelmalek
Azzi Abdelmalek le 9 Avr 2016
transpose it

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by