What is the first and second drevitive of the unit step signal?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mohammed Yakoob
am 22 Apr. 2022
Kommentiert: Star Strider
am 22 Apr. 2022
Code 200×(x>=0) to get unit step with amplitude equal to 200 ,and the first drevitive will be impulse as 200×(x==0),so I don't know if used correct code or not also if that okay how can implement the second drevitive of the unit step signal?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 22 Apr. 2022
Do the experiment —
syms t
u(t) = heaviside(t)
dudt = diff(u)
d2udu2 = diff(dudt)
.
2 Kommentare
Star Strider
am 22 Apr. 2022
It would be helpful to see the relevant parts of your code. I do not understand the problem you are having.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Pole and Zero Locations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!