Ignore:
Timestamp:
03/19/07 18:15:51 (17 years ago)
Author:
pinsard
Message:

improvements/corrections of some *.pro headers

File:
1 edited

Legend:

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

    r163 r231  
    1 ;------------------------------------------------------------ 
    2 ;------------------------------------------------------------ 
    3 ;------------------------------------------------------------ 
    41;+ 
    52; 
    6 ; @file_comments  
     3; @file_comments 
    74; calculate the union between 2 matrices of whole numbers 
    85; 
    9 ; @categories  
     6; @categories 
    107; Calculation 
    118; 
    12 ; @param a {in}{required} arrays of positive integers, which need 
     9; @param a {in}{required} 
     10; arrays of positive integers, which need 
    1311;               not be sorted. Duplicate elements are ignored, as they have no 
    1412;               effect on the result 
     
    1614; @param b {in}{required} see a 
    1715; 
    18 ; @returns tableau 
     16; @returns 
     17; tableau 
    1918; 
    20 ; @restrictions The empty set is denoted by an array with the first element equal to 
    21 ; -1. 
     19; @restrictions 
     20; The empty set is denoted by an array with the first element equal to -1. 
    2221; 
    2322; @restrictions These functions will not be efficient on sparse sets with wide 
     
    2625; resulting set. 
    2726; 
    28 ; @examples a = [2,4,6,8] 
    29 ;           b = [6,1,3,2] 
    30 ;           union(a,b) = [ 1, 2, 3, 4, 6, 8]  ; Elements in either set 
     27; @examples 
     28; IDL> a = [2,4,6,8] 
     29; IDL> b = [6,1,3,2] 
     30; IDL> union(a,b) = [ 1, 2, 3, 4, 6, 8]  ; Elements in either set 
    3131; 
    32 ; @history  http://www.dfanning.com/tips/set_operations.html 
     32; @history 
     33; http://www.dfanning.com/tips/set_operations.html 
    3334; 
    34 ; @version $Id$ 
     35; @version 
     36; $Id$ 
    3537; 
    3638;- 
    37 ;------------------------------------------------------------ 
    38 ;------------------------------------------------------------ 
    39 ;------------------------------------------------------------ 
     39; 
    4040FUNCTION union, a, b 
    4141; 
Note: See TracChangeset for help on using the changeset viewer.