【阶跃函数 冲击函数 门函数】

1 %{
2 @(t) 函数句柄吧,就是你想创建一个以t为自变量的函数用的,
3 写在函数表达式前:f=@(t) heaviside(t-4)
4 %}
5 f=@(t) (heaviside(t+4)-heaviside(t-4)); 
6 ezplot(f,[-10, 10])   %隐函数用法

 

门函数

1 f = @(t)(heaviside(t));
2 ezplot(f,[-10,10]);

 

阶跃函数

 

 

冲击函数

 

posted @ 2018-10-16 20:45  Justice-V  阅读(2331)  评论(0)    收藏  举报