Index of Functions: A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X 
Index Page
cspice_wnincd

Table of contents
Abstract
I/O
Parameters
Examples
Particulars
Exceptions
Files
Restrictions
Required_Reading
Literature_References
Author_and_Institution
Version
Index_Entries

Abstract


   CSPICE_WNINCD determines whether an interval is included in a
   double precision window.

I/O


   Given:

      left,
      right    values defining the endpoints of an interval, which may or may
               not exist in one of the intervals in `window'

               [1,1] = size(right); double = class(right)

      window   SPICE window containing zero or more intervals.

               [2n,1] = size(window); double = class(window)

   the call:

      [wnincd] = cspice_wnincd( left, right, window )

   returns:

      A a boolean with value true if the input interval exists in
     `window'

         a(i)  <  left  <  right  <  b(i)
               -        -         -

      for some interval [ a(i), b(i) ] in `window', false
      otherwise.

Parameters


   None.

Examples


   Any numerical results shown for this example may differ between
   platforms as the results depend on the SPICE kernels used as input
   and the machine specific arithmetic implementation.

   1) Identify the intervals, from a set, that are contained within
      a given window.

      Example code begins here.


      function wnincd_ex1()

         %
         % Let `window' contain the intervals
         %
         window = [ [ 1; 3 ]; [ 7; 11 ]; [ 23; 27 ]; ];

         %
         % Define a set of test intervals.
         %
         t_arr = [ [  1, 3 ]; ...
                   [  9, 10]; ...
                   [  0, 20]; ...
                   [ 13, 15]; ...
                   [ 29, 30] ];

         %
         % Loop over the test intervals.
         %
         % The number of test intervals equals half the
         % number of elements for the Nx2 array `t_arr'.
         %
         for i=1:numel(t_arr)/2

           chk = cspice_wnincd( t_arr(i,1), t_arr(i,2), window);

           if( chk )

               fprintf(                                        ...
                  '%12.5f %12.5f - an element of the window\n', ...
                                        t_arr(i,1), t_arr(i,2))

            else

               fprintf(                                             ...
                  '%12.5f %12.5f - not an element of the window\n', ...
                                            t_arr(i,1), t_arr(i,2))

            end

         end


      When this program was executed on a Mac/Intel/Octave6.x/64-bit
      platform, the output was:


           1.00000      3.00000 - an element of the window
           9.00000     10.00000 - an element of the window
           0.00000     20.00000 - not an element of the window
          13.00000     15.00000 - not an element of the window
          29.00000     30.00000 - not an element of the window


Particulars


   None.

Exceptions


   1)  The cardinality of the input `window' must be even. Left
       endpoints of stored intervals must be strictly greater than
       preceding right endpoints. Right endpoints must be greater
       than or equal to corresponding left endpoints. Invalid window
       data are not diagnosed by this routine and may lead to
       unpredictable results.

   2)  The order of the input interval's endpoints, `left' and `right',
       is not checked, and that this does not affect the result.

   3)  If any of the input arguments, `left', `right' or `window', is
       undefined, an error is signaled by the Matlab error handling
       system.

   4)  If any of the input arguments, `left', `right' or `window', is
       not of the expected type, or it does not have the expected
       dimensions and size, an error is signaled by the Mice
       interface.

Files


   None.

Restrictions


   None.

Required_Reading


   MICE.REQ
   WINDOWS.REQ

Literature_References


   None.

Author_and_Institution


   J. Diaz del Rio     (ODC Space)
   S.C. Krening        (JPL)
   E.D. Wright         (JPL)

Version


   -Mice Version 1.1.0, 10-AUG-2021 (EDW) (JDR)

       Edited the header to comply with NAIF standard. Added
       example's problem statement.

       Added square brackets to output argument in function declaration,
       and renamed it to "wnincd".

       Corrected error message format.

       Added -Parameters, -Exceptions, -Files, -Restrictions,
       -Literature_References and -Author_and_Institution sections.

       Eliminated use of "lasterror" in rethrow.

       Removed reference to the function's corresponding CSPICE header from
       -Required_Reading section.

   -Mice Version 1.0.2, 12-MAR-2012 (EDW) (SCK)

       Edited -I/O section to conform to NAIF standard for Mice
       documentation.

       "logical" call replaced with "zzmice_logical."

       Corrected version ID in 23-JUL-2009 entry, "1.0.0" to "1.0.1."

   -Mice Version 1.0.1, 23-JUL-2009 (EDW)

       Replaced "boolean" calls with "logical" as "boolean" functionally
       aliases "logical."

   -Mice Version 1.0.0, 17-JUL-2007 (EDW)

Index_Entries


   included in a d.p. window


Fri Dec 31 18:44:28 2021