dynare/matlab/reports/@graph/graph.m

139 lines
4.9 KiB
Matlab
Raw Normal View History

2013-02-15 16:52:35 +01:00
function o = graph(varargin)
%function o = graph(varargin)
% Graph Class Constructor
%
% INPUTS
2013-03-13 18:02:29 +01:00
% varargin 0 args : empty graph object
% 1 arg : must be graph object (return a copy of arg)
% > 1 args: option/value pairs (see structure below for
% options)
2013-02-15 16:52:35 +01:00
%
% OUTPUTS
2013-03-13 18:02:29 +01:00
% o [graph] graph object
2013-02-15 16:52:35 +01:00
%
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2013 Dynare Team
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
o = struct;
2013-02-19 15:48:47 +01:00
o.config = '';
o.seriesElements = seriesElements();
2013-02-19 15:48:47 +01:00
o.title = '';
o.ylabel = '';
o.xlabel = '';
2013-02-15 16:52:35 +01:00
o.footnote = '';
2013-02-19 15:48:47 +01:00
o.figname = '';
2013-02-15 16:52:35 +01:00
o.data = '';
2013-03-15 16:47:34 +01:00
o.seriestouse = '';
2013-03-13 15:38:24 +01:00
o.shade = '';
2013-03-15 16:47:34 +01:00
o.xrange = '';
o.yrange = '';
2013-02-19 15:48:47 +01:00
2013-03-07 15:45:53 +01:00
o.grid = true;
2013-02-19 15:48:47 +01:00
o.legend = false;
o.legend_location = 'SouthEast';
o.legend_orientation = 'horizontal';
o.legend_font_size = 8;
2013-02-15 16:52:35 +01:00
if nargin == 1
2013-03-08 19:25:24 +01:00
assert(isa(varargin{1}, 'graph'),['@graph.graph: with one arg you ' ...
'must pass a graph object']);
2013-02-15 16:52:35 +01:00
o = varargin{1};
return;
elseif nargin > 1
if round(nargin/2) ~= nargin/2
2013-03-08 19:25:24 +01:00
error(['@graph.graph: options must be supplied in name/value ' ...
2013-02-15 16:52:35 +01:00
'pairs.']);
end
optNames = lower(fieldnames(o));
% overwrite default values
for pair = reshape(varargin, 2, [])
field = lower(pair{1});
if any(strmatch(field, optNames, 'exact'))
o.(field) = pair{2};
else
2013-03-08 19:25:24 +01:00
error('@graph.graph: %s is not a recognized option.', field);
2013-02-15 16:52:35 +01:00
end
end
end
2013-03-15 16:47:34 +01:00
% Check options provided by user
assert(ischar(o.title), '@graph.graph: title must be a string');
assert(ischar(o.footnote), '@graph.graph: footnote must be a string');
assert(ischar(o.config), '@graph.graph: config file must be a string');
assert(ischar(o.xlabel), '@graph.graph: xlabel file must be a string');
assert(ischar(o.ylabel), '@graph.graph: ylabel file must be a string');
assert(ischar(o.figname), '@graph.graph: figname must be a string');
assert(islogical(o.grid), '@graph.graph: grid must be either true or false');
assert(islogical(o.legend), '@graph.graph: legend must be either true or false');
assert(isint(o.legend_font_size), '@graph.graph: legend_font_size must be an integer');
valid_legend_locations = ...
{'North', 'South', 'East', 'West', ...
'NorthEast', 'SouthEast', 'NorthWest', 'SouthWest', ...
'NorthOutside', 'SouthOutside', 'EastOutside', 'WestOutside', ...
'NorthEastOutside', 'SouthEastOutside', 'NorthWestOutside', 'SouthWestOutside', ...
'Best', 'BestOutside', ...
};
assert(any(strcmp(o.legend_location, valid_legend_locations)), ...
['@graph.graph: legend_location must be one of ' strjoin(valid_legend_locations, ' ')]);
valid_legend_orientations = {'vertical', 'horizontal'};
assert(any(strcmp(o.legend_orientation, valid_legend_orientations)), ...
['@graph.graph: legend_orientation must be one of ' strjoin(valid_legend_orientations, ' ')]);
assert(isempty(o.shade) || (isa(o.shade, 'dynDates') && o.shade.ndat >= 2), ...
['@graph.graph: shade is specified as a dynDates range, e.g. ' ...
'''dynDates(''1999q1''):dynDates(''1999q3'')''.']);
assert(isempty(o.xrange) || (isa(o.xrange, 'dynDates') && o.xrange.ndat >= 2), ...
['@graph.graph: xrange is specified as a dynDates range, e.g. ' ...
'''dynDates(''1999q1''):dynDates(''1999q3'')''.']);
assert(isempty(o.yrange) || (isfloat(o.yrange) && length(o.yrange) == 2 && ...
o.yrange(1) < o.yrange(2)), ...
['@graph.graph: yrange is specified an array with two float entries, ' ...
'the lower bound and upper bound.']);
assert(isempty(o.data) || isa(o.data, 'dynSeries'), ['@graph.graph: data must ' ...
'be a dynSeries']);
assert(isempty(o.seriestouse) || iscellstr(o.seriestouse), ['@graph.graph: ' ...
'series to use must be a cell array of string(s)']);
2013-03-15 16:47:34 +01:00
% using o.seriestouse, create series objects and put them in o.seriesElements
if ~isempty(o.data)
if isempty(o.seriestouse)
for i=1:o.data.vobs
o.seriesElements = o.seriesElements.addSeries('data', o.data{o.name{i}});
end
else
for i=1:length(o.seriestouse)
o.seriesElements = o.seriesElements.addSeries('data', o.data{o.seriestouse{i}});
end
end
end
o = rmfield(o, 'seriestouse');
o = rmfield(o, 'data');
2013-02-15 16:52:35 +01:00
% Create graph object
o = class(o, 'graph');
end