Main Content

winwrite

Class: sigwin.rectwin
Namespace: sigwin

Save rectangular window in ASCII file

Syntax

winwrite(H)
winwrite(H,'filename')

Description

winwrite(H) opens a dialog to export the values of the rectangular window object H to an ASCII file. The file extension .wf is automatically appended.

winwrite(H,'filename') saves the values of the rectangular window object H in the current folder as a column vector in the ASCII file 'filename'. The file extension .wf is automatically appended to filename.

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
      ⋮

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

wvtool(H)