File: ls_issubset.m

package info (click to toggle)
octave-level-set 0.3.1~git.2019.04.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 884 kB
  • sloc: cpp: 1,840; makefile: 34; sh: 20
file content (61 lines) | stat: -rw-r--r-- 1,925 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
##  Copyright (C) 2014  Daniel Kraft <d@domob.eu>
##  GNU Octave level-set package.
##
##  This program is free software: you can redistribute it and/or modify
##  it under the terms of the GNU General Public License as published by
##  the Free Software Foundation, either version 3 of the License, or
##  (at your option) any later version.
##
##  This program is distributed in the hope that it will be useful,
##  but WITHOUT ANY WARRANTY; without even the implied warranty of
##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##  GNU General Public License for more details.
##
##  You should have received a copy of the GNU General Public License
##  along with this program.  If not, see <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn  {Function File} {@var{res} =} ls_issubset (@var{phi1}, @var{phi2})
## 
## Check if the set described by @var{phi1} is a subset of @var{phi2}.
##
## @seealso{ls_inside, ls_equal, ls_disjoint, ls_check}
## @end deftypefn

function res = ls_issubset (phi1, phi2)
  if (nargin () ~= 2)
    print_usage ();
  endif

  if (~all (size (phi1) == size (phi2)))
    error ("PHI1 and PHI2 must be of the same size");
  endif

  res = ls_check (phi2, "contain", ls_inside (phi1));
endfunction

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Tests.

% Test for error conditions.
%!error <Invalid call to>
%!  ls_issubset (1)
%!error <Invalid call to>
%!  ls_issubset (1, 2, 3)
%!error <PHI1 and PHI2 must be of the same size>
%!  ls_issubset (1, [1, 2])

% Basic tests for the cases.
%!test
%!  n = 50;
%!  x = linspace (-10, 10, n);
%!  [XX, YY] = meshgrid (x, x);
%!
%!  phi1 = XX.^2 + YY.^2 - 1^2;
%!  phi2 = XX.^2 + YY.^2 - 5^2;
%!  phi3 = XX.^2 + YY.^2 - 8^2;
%!  phi4 = (XX - 3).^2 + YY.^2 - 3^2;
%!
%!  assert (ls_issubset (phi1, phi2));
%!  assert (ls_issubset (phi4, phi3));
%!  assert (~ls_issubset (phi4, phi2));