how to write delta function like this?

8 次查看(过去 30 天)
h(n)=delta(n-3)-2*delta(n-4); delta(n==0)=1 can any one help me. Thank you.
  1 个评论
Ced
Ced 2016-3-31
The delta function in this case is defined as
"if n is equal to 0, then the function value is 1, else, the function value is 0"
You can implement it just like that in matlab.

请先登录,再进行评论。

回答(1 个)

Jan
Jan 2016-3-31
delta = (n==0);

类别

Help CenterFile Exchange 中查找有关 Fixed-Point Filters 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by