What is the first and second drevitive of the unit step signal?
2 ビュー (過去 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!