view m-toolbox/classes/@specwin/toPlist.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

% TOPLIST creates a plist representing the specwin object.
%
% CALL:   pl = w.toPlist;
% 
% M Hewitson 15-08-11
% 
% $Id: toPlist.m,v 1.1 2011/08/15 06:45:43 hewitson Exp $
% 

function pl = toPlist(win)
  switch lower(win.type)
    case 'kaiser'
      pl = plist('win', win.type, 'length', win.len, 'psll', win.psll);
    case 'levelledhanning'
      pl = plist('win', win.type, 'length', win.len, 'levelorder', win.levelorder);
    otherwise
      pl = plist('win', win.type, 'length', win.len);
  end
end