Ignore:
Timestamp:
03/20/07 17:59:36 (17 years ago)
Author:
pinsard
Message:

improvements/corrections of some *.pro headers

File:
1 edited

Legend:

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

    r231 r232  
    11;+ 
    22; 
    3 ; @file_comments  
     3; @file_comments 
    44; calculate the intersection between 2 matrices of whole numbers 
    55; 
    6 ; @categories  
     6; @categories 
    77; Calculation 
    88; 
     
    2323; resulting set. 
    2424; 
    25 ; @examples  a = [2,4,6,8] 
    26 ;   b = [6,1,3,2] 
    27 ;   inter(a,b) = [ 2, 6]       ; Common elements  
     25; @examples 
     26; IDL> a = [2,4,6,8] 
     27; IDL> b = [6,1,3,2] 
     28; IDL> inter(a,b) = [ 2, 6]       ; Common elements 
    2829; 
    29 ; @history  http://www.dfanning.com/tips/set_operations.html 
     30; @history 
     31; <a href="http://www.dfanning.com/tips/set_operations.html"/> 
    3032; 
    31 ; @version $Id$ 
     33; @version 
     34; $Id$ 
    3235; 
    3336;- 
    3437; 
    3538FUNCTION inter, a, b 
    36 ; 
    3739; 
    3840  compile_opt idl2, strictarrsubs 
Note: See TracChangeset for help on using the changeset viewer.