Monday, October 28, 2019

correlation - Need help understanding convolution indexing


Ok, this is leaving me increasingly frustrated. This builds on a previous question here but I am still not getting the indexing, although I learned from that question all the same.


Case 1: First convolution equation example:



h[k]h[k]=n=h[n] h[n+k]


The way I got the right hand side, was:


1) Make the h's have dummy variables, so h[n] and h[n].


2) Flip one of them around, so now I get h[n] and h[n]


3) Add the delay k into the one that way flipped, so finally I have n=h[n] h[n+k].


Great, I have a convolution.


Case 2: Second convolution example: (Unrelated to first)


We have:


i=h[im] Rxx[i].


Here we want to try and find out what convolution this corresponds to. The way to solve this, (apparently), is to make the assumption that another variable g[n]=h[n], and call it a day. Then we get:



i=h[im] Rxx[i]=i=g[(im)] Rxx[i]=i=g[mi] Rxx[i]=g[m]Rxx[m]=h[m]Rxx[m]


This works great.


Case3: The problem:


This is my problem. Case 1 showed the steps for how to do a normal convolution. Case 2 showed how the method of substitution works. However, if I try to solve Case 1 using this substitution method, I get the wrong answer, even though it worked on case 2. Why is that?


To wit - where am I going wrong here?


h[k]h[k]=h[k]g[k]=n=h[n] g[kn]=n=h[n] h[(kn)]=n=h[n] h[nk]


However, this is **clearly* the wrong answer! What am I doing wrong here?




No comments:

Post a Comment

digital communications - Understanding the Matched Filter

I have a question about matched filtering. Does the matched filter maximise the SNR at the moment of decision only? As far as I understand, ...