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

Removed some restrictions in @dseries/eq overload operator: the variables in...

Removed some restrictions in @dseries/eq overload operator: the variables in the compared dseries object need not to have the same names.
parent 1d939bf6
No related branches found
No related tags found
No related merge requests found
...@@ -61,14 +61,6 @@ if ~isequal(A.init,B.init) ...@@ -61,14 +61,6 @@ if ~isequal(A.init,B.init)
return return
end end
if ~isequal(A.name,B.name)
warning('dseries::eq: Both input arguments do not have the same variables!')
end
if ~isequal(A.tex,B.tex)
warning('dseries::eq: Both input arguments do not have the same tex names!')
end
C = eq(A.data, B.data); C = eq(A.data, B.data);
%@test:1 %@test:1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment