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/ToBeReviewed/PLOTS/VECTEUR/velovect.pro

    r163 r231  
    1 ; 
    2 ;+  
     1;+ 
    32; 
    43; @file_comments 
    54; Produce a two-dimensional velocity field plot. 
    65; 
    7 ; A directed arrow is drawn at each point showing the direction and  
     6; A directed arrow is drawn at each point showing the direction and 
    87; magnitude of the field. 
    9 ;                
     8; 
    109; @categories 
    1110; Plotting, two-dimensional. 
    1211; 
    13 ; 
    1412; @param U {in}{required} 
    15 ; The X component of the two-dimensional field.   
     13; The X component of the two-dimensional field. 
    1614; U must be a two-dimensional array. 
    1715; 
    1816; @param V {in}{required} 
    1917; The Y component of the two dimensional field.  Y must have 
    20 ; the same dimensions as X.  The vector at point [i,j] has a  
     18; the same dimensions as X.  The vector at point [i,j] has a 
    2119; magnitude of: 
    2220; 
     
    2826; 
    2927; @param X {in}{optional}{type=vector} 
    30 ; Optional abscissa values.  X must be a vector with a length  
     28; Optional abscissa values.  X must be a vector with a length 
    3129; equal to the first dimension of U and V. 
    3230; 
     
    3937; 
    4038; @keyword DOTS 
    41 ; Set this keyword to 1 to place a dot at each missing point.  
     39; Set this keyword to 1 to place a dot at each missing point. 
    4240; Set this keyword to 0 or omit it to draw nothing for missing 
    4341; points.  Has effect only if MISSING is specified. 
     
    5553; current graphics screen is not erased, no axes are drawn, and 
    5654; the previously established scaling remains in effect. 
    57 ;  
     55; 
    5856; @keyword CLIP 
    59 ;  
     57; 
    6058; @keyword NOCLIP 
    6159; 
    6260; @keyword _EXTRA 
    63 ; Used to pass your keywords. 
     61; Used to pass keywords 
    6462; 
    65 ; @restrictions  
     63; @restrictions 
    6664; Plotting on the selected device is performed.  System 
    6765; variables concerning plotting are changed. 
    6866; Note:   All other keywords are passed directly to the PLOT procedure 
    69 ;       and may be used to set option such as TITLE, POSITION,  
     67;       and may be used to set option such as TITLE, POSITION, 
    7068;       NOERASE, etc. 
    7169; 
     
    8381;       June, 1995, MWR. Removed _EXTRA inheritance for PLOTS and changed 
    8482;                        OPLOT to PLOTS. 
    85 ;       September, 1996, GGS. Changed denominator of x_step and y_step vars.  
     83;       September, 1996, GGS. Changed denominator of x_step and y_step vars. 
    8684;       February, 1998, DLD.  Add support for CLIP and NO_CLIP keywords. 
    8785;       June, 1998, DLD.  Add support for OVERPLOT keyword. 
     
    103101        s = size(u) 
    104102        t = size(v) 
    105         if s[0] ne 2 then begin  
     103        if s[0] ne 2 then begin 
    106104baduv:   message, 'U and V parameters must be 2D and same size.' 
    107105                endif 
     
    122120        nbad = 0                        ;# of missing points 
    123121        if n_elements(missing) gt 0 then begin 
    124                 good = where(mag lt missing)  
     122                good = where(mag lt missing) 
    125123                if keyword_set(dots) then bad = where(mag ge missing, nbad) 
    126124        endif else begin 
Note: See TracChangeset for help on using the changeset viewer.