ExactBlackmanWindow
x の厳密なBlackman窓関数を表す.
詳細
- ExactBlackmanWindowは,一般に,有限インパルス応答(FIR)フィルタ設計とスペクトル解析で使われる窓関数である.
- 窓関数は,データが短いセグメントで処理されるアプリケーションに使われ,データ値を漸減して各セグメントの終りで0に近付ける平滑化効果がある.
- ExactBlackmanWindow[x]は
に等しい. - ExactBlackmanWindowは自動的にリストに縫い込まれる.
例題
すべて開く すべて閉じる例 (3)
Plot[ExactBlackmanWindow[x], {x, -1, 1}]Plot3D[ExactBlackmanWindow[x]ExactBlackmanWindow[y], {x, -1, 1}, {y, -1, 1}, PlotRange -> All]FunctionExpand[ExactBlackmanWindow[x]]スコープ (4)
ExactBlackmanWindow[0.1]Plot[ExactBlackmanWindow[(x - 1) / 2], {x, -1, 3}]Plot3D[ExactBlackmanWindow[Sqrt[x ^ 2 + y ^ 2]], {x, -1, 1}, {y, -1, 1}, PlotRange -> All]ListPlot[Array[ExactBlackmanWindow, 15, {-1 / 2, 1 / 2}], Filling -> Axis]ListPointPlot3D[Array[ExactBlackmanWindow[#1] ExactBlackmanWindow[#2]&, {15, 10}, {{-1 / 2, 1 / 2}}], Filling -> Axis]アプリケーション (3)
a = ConstantArray[1 / 11, 11]a2 = # / Total[#]&[a Array[ExactBlackmanWindow, 11, {-1 / 2, 1 / 2}]];LogLinearPlot[Evaluate[20Log[10, Abs@ListFourierSequenceTransform[#, ω]]& /@ {a, a2}], {ω, 0.0314, Pi}, PlotRange -> All, GridLines -> Automatic, ImageSize -> 300]窓指定を使ってサンプルPowerSpectralDensityを計算する:
proc = ARMAProcess[1, {.5}, {.3}, 1];
data = RandomFunction[proc, {50}];spec = PowerSpectralDensity[data, w, ExactBlackmanWindow];sd = PowerSpectralDensity[data, w];sd === specプロットは,窓がスペクトル密度を平坦化したことを示している:
Plot[{sd, spec}, {w, -π, π}, PlotRange -> All, PlotLegends -> {"no window", "with window"}]Plot[{spec, Evaluate@PowerSpectralDensity[proc, w]}, {w, -π, π}, PlotLegends -> {"data", "process"}]data = RandomFunction[ARMAProcess[1, {.3}, {.4}, 1], {300}];EstimatedProcess[data, ARMAProcess[1, 1], ProcessEstimator -> {"SpectralEstimator", "Window" -> ExactBlackmanWindow}]特性と関係 (2)
area = Integrate[ExactBlackmanWindow[x], {x, -∞, ∞}]Plot[{ExactBlackmanWindow[x], ExactBlackmanWindow[x] / area}, {x, -1, 1}, PlotRange -> All]f = FourierTransform[ExactBlackmanWindow[x], x, w]LogLinearPlot[20 Log[10, Abs[f]], {w, .1, 80}]関連するガイド
テキスト
Wolfram Research (2012), ExactBlackmanWindow, Wolfram言語関数, https://reference.wolfram.com/language/ref/ExactBlackmanWindow.html.
CMS
Wolfram Language. 2012. "ExactBlackmanWindow." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/ExactBlackmanWindow.html.
APA
Wolfram Language. (2012). ExactBlackmanWindow. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/ExactBlackmanWindow.html
BibTeX
@misc{reference.wolfram_2026_exactblackmanwindow, author="Wolfram Research", title="{ExactBlackmanWindow}", year="2012", howpublished="\url{https://reference.wolfram.com/language/ref/ExactBlackmanWindow.html}", note=[Accessed: 14-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_exactblackmanwindow, organization={Wolfram Research}, title={ExactBlackmanWindow}, year={2012}, url={https://reference.wolfram.com/language/ref/ExactBlackmanWindow.html}, note=[Accessed: 14-September-2026]}