how to creat this rectangular signal?

1 次查看(过去 30 天)
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 个评论
benghenia aek
benghenia aek 2019-1-28
it does not matter
I want a way to help me

请先登录,再进行评论。

采纳的回答

Jan
Jan 2019-1-28
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;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multirate Signal Processing 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by