Fixed bug.

time-shift
Stéphane Adjemian (Charybdis) 2011-12-16 15:14:38 +01:00
parent 857eb7438f
commit cd9250edbf
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ if use_isequal_matlab_builtin
else
t = 1;
if ~(isstruct(B) || iscell(B))
if abs(A(:)-B(:))>tol
if max(abs(A(:)-B(:)))>tol
t = 0;
end
else