Hauptinhalt

info

Class: sigwin.rectwin
Namespace: sigwin

Display information about rectangular window object

Syntax

info(H)
info_win = info(H)

Description

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

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

Examples

expand all

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

H = sigwin.rectwin(16);

win = generate(H)
win = 16×1

     1
     1
     1
     1
     1
     1
     1
     1
     1
     1
     1
     1
     1
     1
     1
      ⋮

wininfo = info(H)
wininfo = 3×18 char array
    'Rectangular Window'
    '------------------'
    'Length  : 16      '

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.