What is the first and second drevitive of the unit step signal?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
Star Strider
2022년 4월 22일
Do the experiment —
syms t
u(t) = heaviside(t)
dudt = diff(u)
d2udu2 = diff(dudt)
.
댓글 수: 2
Star Strider
2022년 4월 22일
It would be helpful to see the relevant parts of your code. I do not understand the problem you are having.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Pole and Zero Locations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!