view m-toolbox/classes/@specwin/toPlist.m @ 32:e22b091498e4
database-connection-manager
Update makeToolbox
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
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