Mercurial > hg > ltpda
view m-toolbox/classes/@specwinViewer/specwinViewer.m @ 1:2014ba5b353a database-connection-manager
Remove old code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Sat, 03 Dec 2011 18:13:55 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% SPECWINVIEWER is a graphical user interface for viewing specwin objects. % % CALL: specwinViewer % specwinViewer(h) % build the model viewer in the figure with handle, h. % % M Hewitson 24-11-08 % % $Id: specwinViewer.m,v 1.2 2011/04/08 08:56:33 hewitson Exp $ % classdef specwinViewer < handle properties handle = []; signals = []; end properties (SetAccess=private, GetAccess=private) Gproperties = []; SigSelected = []; end methods function mainfig = specwinViewer(varargin) % Build the main figure mainfig = buildMainfig(mainfig, varargin{:}); % Make the GUI visible. set(mainfig.handle,'Visible','on') end end % End public methods methods (Static=true) % Main figure varargout = cb_mainfigClose(varargin) varargout = cb_selectWindow(varargin) varargout = cb_plotTime(varargin) varargout = cb_plotFreq(varargin) varargout = plotWindow(varargin) varargout = cb_plot(varargin) end methods (Access = private) varargout = buildMainfig(varargin); end methods (Access = public) end end % END