Skip to content
Snippets Groups Projects
Verified Commit bfa64a04 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Set default value for precision parameter.

parent 0dba66a7
Branches
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ function o = round(o, n) % --*-- Unitary tests --*--
% OUTPUTS
% - o [dseries]
% Copyright (C) 2020 Dynare Team
% Copyright (C) 2020-2021 Dynare Team
%
% This file is part of Dynare.
%
......@@ -26,6 +26,10 @@ function o = round(o, n) % --*-- Unitary tests --*--
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
if nargin<2 || isempty(n)
n = 0;
end
o = copy(o);
o.round_(n);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment