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

Fixed bug (wrong variable name).

parent 91d95336
Branches
No related tags found
No related merge requests found
function [l,c,d] = isint(a)
function [l,c,d] = isint(a) % --*-- Unitary tests --*--
% This function tests if the input argument is an integer.
%
......@@ -40,6 +40,6 @@ end
l = abs(fix(a)-a)<1e-15;
if nargout>1
c = find(b==1);
d = find(b==0);
c = find(l==true);
d = find(l==false);
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment