Borrar filtros
Borrar filtros

What is the first and second drevitive of the unit step signal?

2 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

Star Strider
Star Strider el 22 de Abr. de 2022
Do the experiment —
syms t
u(t) = heaviside(t)
u(t) = 
dudt = diff(u)
dudt(t) = 
d2udu2 = diff(dudt)
d2udu2(t) = 
.
  2 comentarios
Mohammed Yakoob
Mohammed Yakoob el 22 de Abr. de 2022
Thank you for your reply dear friend!! My problem with haviside is how can implement this in for loop because I tested them but I get in error / xr(k+1)= haviside (t(k+1)) : this will be ok but when I use xr.dot(k+1)=diff(xr) : the error said unable to perform assignment because the left and right side have a different number of elements)
Star Strider
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.

Iniciar sesión para comentar.

Más respuestas (1)

Mohammed Yakoob
Mohammed Yakoob el 22 de Abr. de 2022
I'm so sorry to bother you again!! I tried to get good results by using this code S=200*heaviside(n); %to get unit step with 200 as implitude value. Then s.dot = diff(s) ; Finally s.ddot= diff(s.dot) And by using for loop have got samples of s, s.dot, and s.ddot!! The first drevitive was impulse with implitude 100 and the second drevitive also impulse but with - 100 is it okay or not?

Categorías

Más información sobre Numbers and Precision 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!

Translated by