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

improvements/corrections of some *.pro headers

File:
1 edited

Legend:

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

    r231 r238  
    22; 
    33; @file_comments 
    4 ; SPL_FSTDRV returns the values of the first derivative of 
     4; returns the values of the first derivative of 
    55; the interpolating function at the points X2i. It is a double 
    66; precision array. 
     
    88; Given the arrays X and Y, which tabulate a function (with the X[i] 
    99; AND Y[i] in ascending order), and given an input value X2, the 
    10 ; SPL_INCR function returns an interpolated value for the given values 
    11 ; of X2. The interpolation method is based on cubic spline, corrected 
    12 ; in a way that interpolated value are also in ascending order 
     10; <pro>spl_incr</pro> function returns an interpolated value for the given 
     11; values of X2. The interpolation method is based on cubic spline, corrected 
     12; in a way that interpolated value are also in ascending order. 
    1313; 
    1414; @examples 
     
    2424; 
    2525; @param yscd {in}{required} 
    26 ; The output from SPL_INIT for the specified X and Y. 
     26; The output from <proidl>SPL_INIT</pro> for the specified X and Y. 
    2727; 
    2828; @param x2 {in}{required} 
     
    4343FUNCTION spl_fstdrv, x, y, yscd, x2 
    4444; 
     45  compile_opt idl2, strictarrsubs 
     46; 
    4547; compute the first derivative of the spline function 
    46 ; 
    47   compile_opt idl2, strictarrsubs 
    4848; 
    4949  nx = n_elements(x) 
     
    8181  RETURN, yfrst 
    8282END 
    83  
Note: See TracChangeset for help on using the changeset viewer.