回答:
この派生は扱いにくいものです。前に提案されたアプローチには欠陥があります。最初にこれを説明しましょう。正しい解決策を示します。
我々は、関連したいダウンサンプリング信号の-transformを、Y D(Z )= Z { X [ M 、N ] }に、Zのオリジナル信号の-transform X (Z )= Z { X [ N ] }。
ダウンサンプリングされた信号の式を変換の式に単純に差し込むことを考えることができます。
変数変化は明らかです:
しかし、新しい合計インデックスにもかかわらず、ことを理解することが重要でありまだから実行- ∞に∞、合計は今の数字の整数Mの1以上出ています。言い換えると、
、
-transformの定義には
。
これはもはや変換ではないため、次のように書くことはできません。
最初に「ヘルパー」インパルス列信号を次のように定義します。
この関数は、すべてのMサンプルのうち1つでであり、他のすべてでゼロです。
同様に、パルス列関数は次のように記述できます。
Proof: We need to consider separately the cases and :
We apply the substitution , keeping in mind that this makes the summation run only over integer multiples of M:
We can now use the above impulse train function to safely rewrite this as a summation over all :
Using the above formulation for the impulse train function as a finite sum of exponentials, we get:
The summation on the right is a summation over all integers, and is therefore a valid -transform in terms of . Therefore, we can write:
This is the formula for the -transform of a downsampler.
I've not seen this notation before. However, it does seem to make sense. The -downsampler is defined by the equation:
Its transform is defined by the equation:
Apply a change of variable, letting . The ranges of the summation are unaffected by the change of variable since they extend to infinity.
This looks similar to the transform of itself. Recall that it is defined as:
By inspection, we can therefore conclude the following relationship between the transforms of and :
Therefore, the transform of the downsampler output is closely related to the transform of the input signal, which is to be expected. In the frequency domain, this results in an -fold stretching of the signal's frequency content.
But how do you go from the above equation to the one you referenced in the paper? It gives a definition of in terms of only, while the expression we derived is a function of . So for a particular value of that you would like to evaluate at, you would first calculate (i.e. take the -th root of ) and then substitute that into . However, all nonzero have distinct -th roots:
where is the DFT kernel value referenced in your question, and is what I define to be the principal -th root of the complex value :
That is, 's principal -th root is obtained by converting to polar form, taking the -th root of 's magnitude (which is a real number), and dividing 's angle by . The resulting values express in polar form.
Why go to all of this trouble? Because, as I noted before, the mapping from 's domain to the domain of is not one-to-one. I'll now begin some handwaving. For any particular value of that you would like to evaluate for, there are corresponding points in that you could map to. Therefore, each of those points in contribute to the corresponding value of . You then end up with a sum like that shown in the paper:
where refers to the principal -th root calculation I showed earlier. In reality, you could pick any of 's -th roots as the principal one; I picked this definition because it's the most straightforward. If you were to properly and rigorously derive this relationship, I believe the factor of comes in because of a derivative of .
In mathematician-speak, I believe this would be referred to as a composition of functions; , where and . In order to unroll the function composition and write as a function of only, you would chop the domain of into chunks that are one-to-one, invert the function over those intervals, and then sum the results with appropriate scaling factors. I've used this technique before to calculate the probability distribution function of a function of a random variable given the original random variable's pdf (e.g. to derive the pdf of given 's pdf), but the name of the technique escapes me.