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

Merge branch 'master' into ecb-master

parents cb579631 0ab5d352
No related merge requests found
......@@ -46,8 +46,8 @@ if nargin<2
end
% Check second input argument
if p<=0
error('dseries:WrongInputArguments','Second input argument must be strictly positive! Use lead method instead.')
if p<0
error('dseries:WrongInputArguments','Second input argument must be non negative! Use lead method instead.')
end
if ~isint(p)
......
......@@ -46,8 +46,8 @@ if nargin<2
end
% Check second input argument
if p<=0
error('dseries:WrongInputArguments','Second input argument must be strictly positive! Use lag method instead.')
if p<0
error('dseries:WrongInputArguments','Second input argument must be non negative! Use lag method instead.')
end
if ~isint(p)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment