Mercurial > hg > ltpda
view m-toolbox/classes/@specwin/toPlist.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
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