Mercurial > hg > ltpda
view m-toolbox/classes/@repogui/getWorkspaceObjs.m @ 51:9d5c88356247 database-connection-manager
Make unit tests database connection parameters configurable
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:24:37 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% Get a list of LTPDA objects in the MATLAB workspace % % M Hewitson % % $Id: getWorkspaceObjs.m,v 1.1 2009/02/03 08:15:30 hewitson Exp $ % function objs = getWorkspaceObjs() % get base workspace variables ws_vars = evalin('base','whos'); objs = []; for j=1:length(ws_vars) cmd = sprintf('obj = evalin(''base'', ''%s'');', ws_vars(j).name); eval(cmd) if isa(obj, 'ltpda_uo') objs = [objs ws_vars(j)]; end end end