Azzera filtri
Azzera filtri

How can I generate a continious signal? Generating a pulse?

1 visualizzazione (ultimi 30 giorni)
Hello,
My problem is to generate a pulse. While x-axis values are between 0 and 1, y-axis is equal to 1 except that x-axis are between 0.5 and 0.75, y is equal to -1.
How can I create a unit step like this?
Thanks

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 16 Mar 2013
Modificato: Azzi Abdelmalek il 16 Mar 2013
t=0:0.001:1
y=ones(1,numel(t))
y(t>0.5 & t<0.75)=-1
plot(t,y,'r','linewidth',3)

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by