From 9417bd110650b7c80ab3a7f12563de33659398e6 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Fri, 29 Mar 2013 15:40:53 +0100 Subject: [PATCH] reporting: support end keyword for indexing --- matlab/reports/@graph/end.m | 35 ++++++++++++++++++++++++++++++++++ matlab/reports/@page/end.m | 35 ++++++++++++++++++++++++++++++++++ matlab/reports/@pages/end.m | 35 ++++++++++++++++++++++++++++++++++ matlab/reports/@section/end.m | 35 ++++++++++++++++++++++++++++++++++ matlab/reports/@sections/end.m | 35 ++++++++++++++++++++++++++++++++++ 5 files changed, 175 insertions(+) create mode 100644 matlab/reports/@graph/end.m create mode 100644 matlab/reports/@page/end.m create mode 100644 matlab/reports/@pages/end.m create mode 100644 matlab/reports/@section/end.m create mode 100644 matlab/reports/@sections/end.m diff --git a/matlab/reports/@graph/end.m b/matlab/reports/@graph/end.m new file mode 100644 index 000000000..52f11f364 --- /dev/null +++ b/matlab/reports/@graph/end.m @@ -0,0 +1,35 @@ +function lastIndex = end(o, k, n) +% function lastIndex = end(o, k, n) +% End keyword +% +% INPUTS +% o [graph] graph object +% k [integer] index where end appears +% n [integer] number of indices +% +% OUTPUTS +% lastIndex [integer] last graph index +% +% 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 . + +assert(k==1 && n==1, '@graph/end: graph only has one dimension'); +lastIndex = o.seriesElements.numElements(); +end \ No newline at end of file diff --git a/matlab/reports/@page/end.m b/matlab/reports/@page/end.m new file mode 100644 index 000000000..073a271b4 --- /dev/null +++ b/matlab/reports/@page/end.m @@ -0,0 +1,35 @@ +function lastIndex = end(o, k, n) +% function lastIndex = end(o, k, n) +% End keyword +% +% INPUTS +% o [page] page object +% k [integer] index where end appears +% n [integer] number of indices +% +% OUTPUTS +% lastIndex [integer] last sections index +% +% 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 . + +assert(k==1 && n==1, '@page/end: page only has one dimension'); +lastIndex = numSections(o); +end \ No newline at end of file diff --git a/matlab/reports/@pages/end.m b/matlab/reports/@pages/end.m new file mode 100644 index 000000000..02754f4c2 --- /dev/null +++ b/matlab/reports/@pages/end.m @@ -0,0 +1,35 @@ +function lastIndex = end(o, k, n) +% function lastIndex = end(o, k, n) +% End keyword +% +% INPUTS +% o [pages] pages object +% k [integer] index where end appears +% n [integer] number of indices +% +% OUTPUTS +% lastIndex [integer] last pages index +% +% 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 . + +assert(k==1 && n==1, '@pages/end: pages only has one dimension'); +lastIndex = numPages(o); +end \ No newline at end of file diff --git a/matlab/reports/@section/end.m b/matlab/reports/@section/end.m new file mode 100644 index 000000000..0017c4b31 --- /dev/null +++ b/matlab/reports/@section/end.m @@ -0,0 +1,35 @@ +function lastIndex = end(o, k, n) +% function lastIndex = end(o, k, n) +% End keyword +% +% INPUTS +% o [section] section object +% k [integer] index where end appears +% n [integer] number of indices +% +% OUTPUTS +% lastIndex [integer] last section index +% +% 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 . + +assert(k==1 && n==1, '@section/end: section only has one dimension'); +lastIndex = numElements(o); +end \ No newline at end of file diff --git a/matlab/reports/@sections/end.m b/matlab/reports/@sections/end.m new file mode 100644 index 000000000..c9fc0cd92 --- /dev/null +++ b/matlab/reports/@sections/end.m @@ -0,0 +1,35 @@ +function lastIndex = end(o, k, n) +% function lastIndex = end(o, k, n) +% End keyword +% +% INPUTS +% o [sections] sections object +% k [integer] index where end appears +% n [integer] number of indices +% +% OUTPUTS +% lastIndex [integer] last sections index +% +% 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 . + +assert(k==1 && n==1, '@sections/end: sections only has one dimension'); +lastIndex = numSections(o); +end \ No newline at end of file