What is the first and second drevitive of the unit step signal?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohammed Yakoob
le 22 Avr 2022
Commenté : Star Strider
le 22 Avr 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 commentaires
Réponse acceptée
Star Strider
le 22 Avr 2022
Do the experiment —
syms t
u(t) = heaviside(t)
dudt = diff(u)
d2udu2 = diff(dudt)
.
2 commentaires
Star Strider
le 22 Avr 2022
It would be helpful to see the relevant parts of your code. I do not understand the problem you are having.
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Pole and Zero Locations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!