view m-toolbox/classes/@xydata/xydata.m @ 40:977eb37f31cb
database-connection-manager
User friendlier errors from utils.mysql.connect
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 18:04:03 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% XYDATA X-Y data object class constructor.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: XYDATA X-Y data object class constructor.
% Create an X-Y data object.
%
% SUPER CLASSES: data2D < ltpda_data < ltpda_nuo < ltpda_obj
%
% Constructors:
% xy = xydata() - creates a blank xy-data object
% xy = xydata(y) - creates an xy data object with the given
% y-data.
% xy = xydata(x,y) - creates an xy-data object with the given
% (x,y)-data.
%
% VERSION: $Id: xydata.m,v 1.51 2011/03/30 13:17:33 mauro Exp $
%
% SEE ALSO: tsdata, fsdata, xydata, cdata, data2D, data3D, xyzdata
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
classdef (Hidden = true) xydata < data2D
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Property definition %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%---------- Public (read/write) Properties ----------
properties
end
%---------- Protected read-only Properties ----------
properties (GetAccess = public, SetAccess = protected)
end
%---------- Private Properties ----------
properties (GetAccess = protected, SetAccess = protected)
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Check property setting %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Constructor %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods
function obj = xydata(varargin)
switch nargin
case 0
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%% no input %%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
case 1
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%% one input %%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if isa(varargin{1}, 'xydata')
%%%%%%%%%% obj = xydata(xydata-object) %%%%%%%%%%
obj = copy(varargin{1}, 1);
elseif isnumeric(varargin{1})
%%%%%%%%%% obj = xydata(y-vector) %%%%%%%%%%
obj.setY(varargin{1});
obj.setX(1:length(varargin{1}));
elseif isstruct(varargin{1})
%%%%%%%%%% data = xydata(struct) %%%%%%%%%%
obj = fromStruct(obj, varargin{1});
else
error('### Unknown single argument constructor.');
end
case 2
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%% two input %%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if isa(varargin{1}, 'org.apache.xerces.dom.DeferredElementImpl') && ...
isa(varargin{2}, 'history')
%%%%%%%%%% obj = xydata(DOM node, history-objects) %%%%%%%%%%
obj = fromDom(obj, varargin{1}, varargin{2});
elseif numel(varargin{1}) == numel(varargin{2})
%%%%%%%%%% obj = xydata(x-vector, y-vector) %%%%%%%%%%
obj.setXY(varargin{1}, varargin{2});
else
error('### Unknown two argument constructor.');
end
otherwise
error('### Unknown number of constructor arguments.');
end
end % End constructor
end % End public methods
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods (Public, hidden) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods (Hidden = true)
varargout = attachToDom(varargin)
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods (protected) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods (Access = protected)
varargout = fromStruct(varargin)
varargout = fromDom(varargin)
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods (private) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods (Access = private)
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods (static) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods (Static)
function out = VEROUT()
out = '$Id: xydata.m,v 1.51 2011/03/30 13:17:33 mauro Exp $';
end
function ii = getInfo(varargin)
ii = utils.helper.generic_getInfo(varargin{:}, 'xydata');
end
function out = SETS()
out = {'Default'};
end
function out = getDefaultPlist(set)
switch lower(set)
case 'default'
out = plist();
otherwise
error('### Unknown set [%s]', set');
end
end
function obj = initObjectWithSize(n,m)
obj = xydata.newarray([n m]);
end
end % End static methods
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods (static, private) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods (Static, Access = private)
end % End static, private methods
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods (static, hidden) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods (Static = true, Hidden = true)
varargout = loadobj(varargin)
varargout = update_struct(varargin);
end
end % End classdef