how to creat this rectangular signal?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
benghenia aek
el 27 de En. de 2019
Comentada: benghenia aek
el 29 de En. de 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](https://www.mathworks.com/matlabcentral/answers/uploaded_files/201704/48099895_1457061161094299_7270906206472896512_n.png)
![48099895_1457061161094299_7270906206472896512_n.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/201704/48099895_1457061161094299_7270906206472896512_n.png)
6 comentarios
Respuesta aceptada
Jan
el 28 de En. de 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;
Más respuestas (0)
Ver también
Categorías
Más información sobre Signal Generation and Preprocessing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!