Main Content

info

Class: sigwin.bohmanwin
Namespace: sigwin

Display information about Bohman window object

Syntax

info(H)
info_win = info(H)

Description

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

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

Examples

expand all

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

H = sigwin.bohmanwin(16);

win = generate(H)
win = 16×1

         0
    0.0077
    0.0581
    0.1791
    0.3723
    0.6090
    0.8343
    0.9791
    0.9791
    0.8343
      ⋮

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

wvtool(H)