Ignore:
Timestamp:
06/12/06 10:29:56 (18 years ago)
Author:
pinsard
Message:

start to modify headers of Interpolation *.pro files for better idldoc output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Interpolation/cutpar.pro

    r59 r101  
    11;+ 
    2 ; NAME: cutpar 
    32; 
    4 ; PURPOSE: cut p parallelogram(s) into p*n^2 parallelograms 
     3; @file_comments cut p parallelogram(s) into p*n^2 parallelograms 
    54; 
    6 ; CATEGORY: basic work 
     5; @categories basic work 
    76; 
    8 ; CALLING SEQUENCE:res = cutpar(x0, y0, x1, y1, x2, y2, x3, y3, n) 
     7; @examples  
     8; res = cutpar(x0, y0, x1, y1, x2, y2, x3, y3, n) 
    99; 
    10 ; INPUTS: 
    11 ;       x0,y0 1d arrays of p elements, giving the edge positions. The 
     10;       @param x0,y0  {in}{required} 1d arrays of p elements, giving the edge positions. The 
    1211;       edges must be given as in plot to traw the parallelogram. (see 
    1312;       example). 
    14 ;       n: each parallelogram will be cutted in n^2 pieces 
     13;       @param n {in}{required} each parallelogram will be cutted in n^2 pieces 
    1514; 
    16 ; KEYWORD PARAMETERS:  
     15; @keyword         /endpoints see outputs 
    1716; 
    18 ;         /endpoints: see outputs 
    19 ; 
    20 ;         /onsphere: to specify that the points are located on a 
     17; @keyword         /onsphere to specify that the points are located on a 
    2118;         sphere. In this case, x and y corresponds to longitude and 
    2219;         latitude in degrees. 
    2320; 
    24 ; OUTPUTS: 
     21; @returns 
    2522;        -defaut: 3d array(2,n^2,p) giving the center position of each 
    2623;        piece of the parallelograms 
     
    2825;        of each piece of the parallelograms 
    2926; 
    30 ; COMMON BLOCKS: no 
     27; @uses cutsegment.pro 
    3128; 
    32 ; SIDE EFFECTS: need cutsegment.pro 
    33 ; 
    34 ; RESTRICTIONS: ? 
    35 ; 
    36 ; EXAMPLE: 
     29; @examples  
    3730; 
    3831; x0 = [2,6,2] 
     
    5043; for i=0,2 do oplot, [res[0,*,i]], [res[1,*,i]], color = 20+10*i, psym = 1, thick = 3 
    5144; 
    52 ; MODIFICATION HISTORY: 
    53 ;           S. Masson (smasson@lodyc.jussieu.fr) 
     45; @history 
     46;           S. Masson (smasson\@lodyc.jussieu.fr) 
    5447;           July 5th, 2002 
    5548;- 
Note: See TracChangeset for help on using the changeset viewer.