What is the first and second drevitive of the unit step signal?
1 view (last 30 days)
Show older comments
Mohammed Yakoob
on 22 Apr 2022
Commented: Star Strider
on 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 Comments
Accepted Answer
Star Strider
on 22 Apr 2022
Do the experiment —
syms t
u(t) = heaviside(t)
dudt = diff(u)
d2udu2 = diff(dudt)
.
2 Comments
Star Strider
on 22 Apr 2022
It would be helpful to see the relevant parts of your code. I do not understand the problem you are having.
More Answers (1)
See Also
Categories
Find more on Pole and Zero Locations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!