Skip to content
Snippets Groups Projects
Verified Commit 5105a29b authored by Houtan Bastani's avatar Houtan Bastani
Browse files

add isinf

parent 581bfedc
No related branches found
No related tags found
No related merge requests found
function b = isinf(o) % --*-- Unitary tests --*--
% Returns an array of logicals (true/false).
% Element (t,i) is true iff the i-th variable at period number t is an Inf.
%
% INPUTS
% - o [dseries] with N variables and T periods.
%
% OUTPUTS
% - b [logical] T*N array of logicals.
% Copyright (C) 2019 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/>.
b = isinf(o.data);
%@test:1
%$ try
%$ data = randn(100, 10);
%$ cnan = randi(10, 50, 1);
%$ rnan = randi(100, 50, 1);
%$ for i=1:50, data(rnan(i),cnan(i)) = Inf; end
%$ iinf = isinf(data);
%$ ts = dseries(data);
%$ dd = ts.isinf();
%$ t(1) = true;
%$ catch
%$ t(1) = false;
%$ end
%$
%$ if t(1)
%$ t(2) = isequal(dd, iinf);
%$ end
%$
%$ T = all(t);
%@eof:1
...@@ -115,6 +115,7 @@ switch S(1).type ...@@ -115,6 +115,7 @@ switch S(1).type
'mdiff','mdiff_', ... 'mdiff','mdiff_', ...
'abs','abs_', ... 'abs','abs_', ...
'isnan', ... 'isnan', ...
'isinf', ...
'firstdate', ... 'firstdate', ...
'lastdate', ... 'lastdate', ...
'firstobservedperiod', ... 'firstobservedperiod', ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment