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/cutsegment.pro

    r59 r101  
    11;+ 
    2 ; NAME: cutsegment 
    32; 
    4 ; PURPOSE: cut p segments into p*n equal parts 
     3; @file_comments cut p segments into p*n equal parts 
    54; 
    6 ; CATEGORY: basic work 
     5; @categories basic work 
    76; 
    8 ; CALLING SEQUENCE: res = cutsegment(x0, y0, x1, y1, n) 
     7; @examples   
     8; res = cutsegment(x0, y0, x1, y1, n) 
    99; 
    10 ; INPUTS:  
    11 ;         x0,y0 and x1,y1, 1d arrays of p elements, the coordinates of 
     10;         @param x0,y0 and x1,y1  {in}{required}  1d arrays of p elements, the coordinates of 
    1211;         the endpoints of the p segmements 
    13 ;         n: the number of pieces we want to cut each segment 
     12;         @param  n {in}{required} the number of pieces we want to cut each segment 
    1413; 
    15 ; KEYWORD PARAMETERS: 
    1614; 
    17 ;         /endpoints: see ouputs 
     15; @keyword         /endpoints see ouputs 
    1816; 
    19 ;         /onsphere: to specify that the points are located on a 
     17; @keyword         /onsphere to specify that the points are located on a 
    2018;         sphere. In this case, x and y corresponds to longitude and 
    2119;         latitude in degrees. 
    2220; 
    23 ; OUTPUTS: 
     21; @returns 
    2422;        defaut: a 3d array (2,n,p) that gives the coordinates of the 
    2523;        middle of the cutted segments. 
     
    2725;        coordinates of the endpoints of the cutted segments. 
    2826; 
    29 ; COMMON BLOCKS: no 
    30 ; 
    31 ; SIDE EFFECTS: no 
    32 ; 
    33 ; RESTRICTIONS: ? 
    34 ; 
    35 ; EXAMPLE: 
     27; @examples  
    3628; 
    3729;  IDL> x0=[2,5] 
     
    4638;  IDL> oplot, [res[0,*,1]], [res[1,*,1]], color = 40, psym = 1, thick = 3 
    4739; 
    48 ; MODIFICATION HISTORY: 
    49 ;           S. Masson (smasson@lodyc.jussieu.fr) 
     40; @history 
     41;           S. Masson (smasson\@lodyc.jussieu.fr) 
    5042;           July 5th, 2002 
    5143;- 
Note: See TracChangeset for help on using the changeset viewer.