Help with Convolution!

georgelymp

New member
Joined
Mar 11, 2019
Messages
3
I have two signals and I must calculate the Convolution.
u[n+pi]*δ[n-2kπ]
u:unit step function ,δ:Dirac function (δ[0]=1 ,δ[n]=0 for n !=0)
k=random integer
 
I have two signals and I must calculate the Convolution.
u[n+pi]*δ[n-2kπ]
u:unit step function ,δ:Dirac function (δ[0]=1 ,δ[n]=0 for n !=0)
k=random integer
Please follow the rules of posting in this forum, as enunciated at:

READ BEFORE POSTING

Please share your work/thoughts about this assignment
 
you should be able to instantly write down the convolution of any function with a delta function

Discrete convolution of functions f(n)\displaystyle f(n) and h(n)\displaystyle h(n) is given by

(fh)(n)=m=f(m)h(nm)\displaystyle (f \ast h)(n) = \displaystyle \sum \limits_{m = -\infty}^\infty f(m)h(n-m)

\(\displaystyle f(n) = u(n+\pi)\\
h(n) = \delta(n-2k\pi)\)

given all this

when is h(nm)!=0\displaystyle h(n-m) != 0 ?

thus what is the value of the convolution sum?
 
Top