Borrar filtros
Borrar filtros

unit step function to mimic signal

1 visualización (últimos 30 días)
Weston Ayers
Weston Ayers el 31 de Mzo. de 2019
Respondida: Agnish Dutta el 8 de Abr. de 2019
Im having issues creating my unit step to look like the signal i have it just needs a small sshift that i do not know how to do.
x = square(t-1);
y = -2*square(t-1);
unitstep = zeros(size(t));
unitstep(t>=1)=-1;

Respuestas (1)

Agnish Dutta
Agnish Dutta el 8 de Abr. de 2019
From what I understand, you want the falling edge of your unit step signal to coincide with that of the square wave.
If that is the case then the following fix should work:
unitstep(t>=3)=-1 % Instead of "unitstep(t>=1)=-1;".

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by