私は scipy.signalのすべてのウィンドウ関数のドキュメントを追加しようとしていますが、これまで聞いたことのないSlepian(DPSSと同じ?)ウィンドウとGeneralized Gaussianウィンドウが表示されません。
p
一般化されたガウスとwidth
スレピアンには、あるタイプの形状パラメーターである2つの変数があります。(sig
シグマ、標準偏差のように見えます。)
2つの質問:
私がリバースエンジニアリングして推測する代わりに、これらの変数が何と呼ばれ、何をしているのかを誰かが説明できますか?
これらのウィンドウが何に役立つか、またはどこで使用されるかを説明できますか?
def general_gaussian(M, p, sig, sym=True):
"""Return a window with a generalized Gaussian shape.
The Gaussian shape is defined as ``exp(-0.5*(x/sig)**(2*p))``, the
half-power point is at ``(2*log(2)))**(1/(2*p)) * sig``.
"""
if M < 1:
return np.array([])
if M == 1:
return np.ones(1, 'd')
odd = M % 2
if not sym and not odd:
M = M + 1
n = np.arange(0, M) - (M - 1.0) / 2.0
w = np.exp(-0.5 * (n / sig) ** (2 * p))
if not sym and not odd:
w = w[:-1]
return w
def slepian(M, width, sym=True):
"""Return the M-point slepian window.
"""
if (M * width > 27.38):
raise ValueError("Cannot reliably obtain slepian sequences for"
" M*width > 27.38.")
if M < 1:
return np.array([])
if M == 1:
return np.ones(1, 'd')
odd = M % 2
if not sym and not odd:
M = M + 1
twoF = width / 2.0
alpha = (M - 1) / 2.0
m = np.arange(0, M) - alpha
n = m[:, np.newaxis]
k = m[np.newaxis, :]
AF = twoF * special.sinc(twoF * (n - k))
[lam, vec] = linalg.eig(AF)
ind = np.argmax(abs(lam), axis=-1)
w = np.abs(vec[:, ind])
w = w / max(w)
if not sym and not odd:
w = w[:-1]
return w
可能な一致:
nipyのdpss_windows関数はNW
、「2NW = BW * f0 = BW * N / dtに対応するが、dtを1とする標準化された半帯域幅」を使用します。
MATLABのDPSS用途time_halfbandwidth
これは、同じウィンドウですか?とtime_halfbandwidth
同じwidth
ですか?
一般化された正規分布にはβ(2倍に等しいp
?)があり、これは形状パラメーターと呼ばれ、β= 1の正規分布とβ= 2のラプラス分布です。