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

View File

@ -0,0 +1,11 @@
function key=isppoly(p)
% isppoly - check whether input is an ppoly object
%
% key=isppoly(p)
%
% key returns 1 or 0
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 18 May, 2022
key=strcmp(class(p),'ppoly');
end