What is the first and second drevitive of the unit step signal?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mohammed Yakoob
el 22 de Abr. de 2022
Comentada: Star Strider
el 22 de Abr. de 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 comentarios
Respuesta aceptada
Star Strider
el 22 de Abr. de 2022
Do the experiment —
syms t
u(t) = heaviside(t)
dudt = diff(u)
d2udu2 = diff(dudt)
.
2 comentarios
Star Strider
el 22 de Abr. de 2022
It would be helpful to see the relevant parts of your code. I do not understand the problem you are having.
Más respuestas (1)
Ver también
Categorías
Más información sobre Pole and Zero Locations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!