Main Content

info

Class: sigwin.parzenwin
Namespace: sigwin

Display information about Parzen window object

Syntax

info(H)
info_win=info(H)

Description

info(H) displays length information about the Parzen window object H.

info_win=info(H) returns length information about the Parzen window object H in the character array info_win.

Examples

expand all

Generate a Parzen window of length N = 16. Return its values as a column vector. Show information about the window object. Display the window.

H = sigwin.parzenwin(16);

win = generate(H)
win = 16×1

    0.0005
    0.0132
    0.0610
    0.1675
    0.3540
    0.5972
    0.8286
    0.9780
    0.9780
    0.8286
      ⋮

wininfo = info(H)
wininfo = 3x13 char array
    'Parzen Window'
    '-------------'
    'Length  : 16 '

wvtool(H)