Main Content

このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。

info

クラス: sigwin.blackman
名前空間: sigwin

ブラックマン ウィンドウ オブジェクトについての情報の表示

構文

info(H)
info_win = info(H)

説明

info(H) では、ブラックマン ウィンドウ オブジェクト H の長さとサンプリングの情報が表示されます。

info_win = info(H) では、ブラックマン ウィンドウ オブジェクト H の長さとサンプリングの情報が文字配列 info_win に返されます。

すべて展開する

長さ N = 16 のブラックマン ウィンドウを生成します。その値を列ベクトルとして返します。ウィンドウ オブジェクトに関する情報が表示されます。ウィンドウを表示します。

H = sigwin.blackman(16);

win = generate(H)
win = 16×1

         0
    0.0168
    0.0771
    0.2008
    0.3940
    0.6300
    0.8492
    0.9822
    0.9822
    0.8492
      ⋮

wininfo = info(H)
wininfo = 4x26 char array
    'Blackman Window           '
    '---------------           '
    'Length         : 16       '
    'Sampling Flag  : symmetric'

wvtool(H)

Figure Window Visualization Tool contains 2 axes objects and other objects of type uimenu, uitoolbar, uipanel. Axes object 1 with title Time domain, xlabel Samples, ylabel Amplitude contains an object of type line. Axes object 2 with title Frequency domain, xlabel Normalized Frequency (\times\pi rad/sample), ylabel Magnitude (dB) contains an object of type line.