Main Content

info

Class: sigwin.flattopwin
Namespace: sigwin

Display information about flat top window object

Syntax

info(H)
info_win = info(H)

Description

info(H) displays length and sampling information for the flat top window object H.

info_win = info(H) returns length and sampling information for the flat top window object H in the character array info_win.

Examples

expand all

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

H = sigwin.flattopwin(16);

win = generate(H)
win = 16×1

   -0.0004
   -0.0061
   -0.0314
   -0.0677
   -0.0316
    0.1982
    0.6069
    0.9487
    0.9487
    0.6069
      ⋮

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

wvtool(H)