Ignore:
Timestamp:
08/29/06 14:59:46 (18 years ago)
Author:
navarro
Message:

header improvements : type of parameters and keywords, default values, spell checking + idldoc assistant (IDL online_help)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Matrix/cmset_op.pro

    r157 r163  
    4141; 
    4242;   The complements of either set can be taken as well, by using the 
    43 ;   NOT1 and NOT2 keywords. For example, it may be desireable to find 
     43;   NOT1 and NOT2 keywords. For example, it may be desirable to find 
    4444;   the elements in A but not B, or B but not A (they are different!). 
    4545;   The following IDL expressions achieve each of those effects: 
     
    7979; See A 
    8080; 
    81 ; @param OP0 {in}{required} 
     81; @param OP0 {in}{required}{type=string} 
    8282; a string, the operation to be performed. Must be one of 
    8383; 'AND', 'OR' or 'XOR' (lower or mixed case is permitted). 
     
    101101; 
    102102; @keyword INDEX 
    103 ; if set, then return a list of indices instead of the array 
     103; if set, then return a list of indexes instead of the array 
    104104; values themselves. The "slower" set operations are always 
    105105; performed in this case. 
    106106; 
    107 ; The indices refer to the *combined* array [A,B]. To 
     107; The indexes refer to the *combined* array [A,B]. To 
    108108; clarify, in the following call: I = CMSET_OP(..., /INDEX); 
    109109; returned values from 0 to NA-1 refer to A[I], and values 
     
    118118; The resulting set as a one-dimensional array. The set may be 
    119119; represented by either an array of data values (default), or an 
    120 ; array of indices (if INDEX is set). Duplicate elements, if any, 
     120; array of indexes (if INDEX is set). Duplicate elements, if any, 
    121121; are removed, and element order may not be preserved. 
    122122; 
Note: See TracChangeset for help on using the changeset viewer.