how to creat this rectangular signal?

1 visualizzazione (ultimi 30 giorni)
benghenia aek
benghenia aek il 27 Gen 2019
Commentato: benghenia aek il 29 Gen 2019
X=[1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0]
Y=[1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1]
X and Y these are rectangular signal vectors
I would like a transformation x (t) to y (t)?48099895_1457061161094299_7270906206472896512_n.png
  6 Commenti
benghenia aek
benghenia aek il 28 Gen 2019
it does not matter
I want a way to help me

Accedi per commentare.

Risposta accettata

Jan
Jan il 28 Gen 2019
x = [1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0];
y = ones(size(x));
y(strfind(x, [0,1])) = -1;
y = cumprod(y);
y(y == -1) = 0;

Più risposte (0)

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by