Main Content

info

Class: sigwin.bartlett
Namespace: sigwin

Display information about Bartlett window object

Syntax

info(H)
info_win = info(H)

Description

info(H) displays length information for the Bartlett window object H.

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

Examples

expand all

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

H = sigwin.bartlett(16);

win = generate(H)
win = 16×1

         0
    0.1333
    0.2667
    0.4000
    0.5333
    0.6667
    0.8000
    0.9333
    0.9333
    0.8000
      ⋮

wininfo = info(H)
wininfo = 3x15 char array
    'Bartlett Window'
    '---------------'
    'Length  : 16   '

wvtool(H)

See Also

| |