wnintd_c |
Table of contents
Procedurewnintd_c ( Intersect two DP windows ) void wnintd_c ( SpiceCell * a, SpiceCell * b, SpiceCell * c ) AbstractPlace the intersection of two double precision windows into a third window. Required_ReadingWINDOWS KeywordsWINDOWS Brief_I/OVARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- a, b I Input windows. c O Intersection of `a' and `b'. Detailed_Inputa, b are SPICE windows, each of which contains zero or more intervals. `a' and `b' must be declared as double precision SpiceCells. CSPICE provides the following macros, which declare and initialize the cells SPICEDOUBLE_CELL ( a, ASZ ); SPICEDOUBLE_CELL ( b, BSZ ); where ASZ and BSZ are the maximum capacity of `a' and `b', respectively. Detailed_Outputc is the output SPICE window, containing the intersection of `a' and `b' --- every point contained in both `a' and `b'. `c' must be distinct from both `a' and `b'. `c' must be declared as a double precision SpiceCell. CSPICE provides the following macro, which declares and initializes the cell SPICEDOUBLE_CELL ( c, CSZ ); where CSZ is the maximum capacity of `c'. ParametersNone. Exceptions1) If the intersection of the two windows results in an excess of elements, the error SPICE(WINDOWEXCESS) is signaled by a routine in the call tree of this routine. 2) The cardinality of the input windows 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. 3) If any the `a', `b' or `c' cell arguments has a type other than SpiceDouble, the error SPICE(TYPEMISMATCH) is signaled. FilesNone. ParticularsThe intersection of two windows contains every point contained both in the first window and in the second window. ExamplesLet a contain the intervals [ 1, 3 ] [ 7, 11 ] [ 23, 27 ] and b contain the intervals [ 2, 4 ] [ 8, 10 ] [ 16, 18 ] Then the intersection of a and b contains the intervals [ 2, 3 ] [ 8, 10 ] RestrictionsNone. Literature_ReferencesNone. Author_and_InstitutionN.J. Bachman (JPL) J. Diaz del Rio (ODC Space) H.A. Neilan (JPL) B.V. Semenov (JPL) W.L. Taber (JPL) I.M. Underwood (JPL) Version-CSPICE Version 1.0.2, 05-SEP-2021 (JDR) Edited the header to comply with NAIF standard. Added entry #3 in -Exceptions section. Extended description of arguments "a", "b" and "c" to include type and preferred declaration method. -CSPICE Version 1.0.1, 11-FEB-2013 (BVS) Corrected typo in Brief I/O section. -CSPICE Version 1.0.0, 29-JUL-2002 (NJB) (HAN) (WLT) (IMU) Index_Entriesintersect two d.p. windows |
Fri Dec 31 18:41:15 2021