Mercurial > hg > ltpda
view m-toolbox/classes/@specwin/toPlist.m @ 26:ce4df2e95a55 database-connection-manager
Remove LTPDARepositoryManager initialization
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +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