This commit is contained in:
2023-11-14 17:10:27 +08:00
commit d5a822831c
423 changed files with 5909 additions and 0 deletions

12
FOTF Toolbox/@ppoly/eq.m Normal file
View File

@ -0,0 +1,12 @@
function key=eq(p1,p2)
% eq - test whether two PPOLY objects are equal or not
%
% key=p1==p2
%
% p1, p2 - the two PPOLY objects
% key = 1 for equal, otherwise key = 0
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 18 May, 2022
g=collect(p1-p2); key=isempty(g.a);
end