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

Fixed bug.

Output argument t was not initialized when dassert() routine was called
with three arguments for comparing arrays of doubles.
parent bcc6e5e7
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,8 @@ if isa(A,'double')
else
if max(abs(A(:)-B(:)))>tol
t = 0;
else
t = 1;
end
end
elseif isa(A,'cell')
......
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