Ignore:
Timestamp:
04/06/07 10:35:17 (17 years ago)
Author:
pinsard
Message:

improvements/corrections of some *.pro headers + replace some message by some report

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/idldoc_assistant_output/Interpolation/spl_incr.html

    r234 r242  
    6262 
    6363     
    64  
    6564 Given the arrays X and Y, which tabulate a function (with the X[i] 
    6665 AND Y[i] in ascending order), and given an input value X2, the 
    67  SPL_INCR function returns an interpolated value for the given values 
     66 spl_incr function returns an interpolated value for the given values 
    6867 of X2. The interpolation method is based on cubic spline, corrected 
    6968 in a way that interpolated values are also monotonically increasing. 
     
    7978       
    8079      <dt><a href="#_pure_convex"><i>result = </i>pure_convex(<i>x1, x2, y1, y2, der2, x</i>)</a><dt> 
    81       <dd><font size="-1"></font></dd> 
     80      <dd><font size="-1"> </font></dd> 
    8281       
    8382      <dt><a href="#_spl_incr"><i>result = </i>spl_incr(<i>x, y, x2</i>, YP0=<i>YP0</i>, YPN_1=<i>YPN_1</i>)</a><dt> 
    84       <dd><font size="-1"></font></dd> 
     83      <dd><font size="-1"> </font></dd> 
    8584       
    8685    </dl> 
     
    10099 
    101100    <h3>Return value</h3> 
    102  
    103     y2: f(x2) = y2. Double precision array 
     101 y2: f(x2) = y2. Double precision array 
    104102 
    105103 
     
    121119 
    122120     
    123  An n-element (at least 2) input vector that specifies the tabulate points in 
     121 An n-elements (at least 2) input vector that specifies the tabulate points in 
    124122 a strict ascending order. 
    125123 
     
    157155 
    158156     
    159  f(x) = y. An n-element input vector that specifies the values 
     157 f(x) = y. An n-elements input vector that specifies the values 
    160158 of the tabulated function F(Xi) corresponding to Xi. As f is 
    161159 supposed to be monotonically increasing, y values must be 
     
    215213 
    216214    <h3>Examples</h3><pre> 
    217  
    218215 IDL> n = 100L 
    219216 IDL> x = (dindgen(n))^2 
     
    238235     
    239236    <h4>Version</h4> 
    240  $Id: spl_incr.pro 231 2007-03-19 17:15:51Z pinsard $ 
     237 $Id: spl_incr.pro 238 2007-03-27 13:43:18Z pinsard $ 
    241238 
    242239    <h4>History</h4> 
     
    273270     
    274271 
     272 
    275273     
    276274 
     
    292290 
    293291     
    294  An n-element (at least 2) input vector that specifies the tabulate points in 
     292 An n-elements (at least 2) input vector that specifies the tabulate points in 
    295293 a strict ascending order. 
    296294 
     
    328326 
    329327     
    330  f(x) = y. An n-element input vector that specifies the values 
     328 f(x) = y. An n-elements input vector that specifies the values 
    331329    of the tabulated function F(Xi) corresponding to Xi. As f is 
    332330    supposed to be monotonically increasing, y values must be 
     
    363361 
    364362     
     363 
    365364     
    366365 
     
    416415     
    417416 
     417 
    418418     
    419419 
     
    484484    </h4> 
    485485 
    486      The first derivative of the interpolating function at the 
     486     
     487 The first derivative of the interpolating function at the 
    487488    point X0. If YP0 is omitted, the second derivative at the 
    488489    boundary is set to zero, resulting in a "natural spline." 
     490 
    489491     
    490492    <a name="#_spl_incr_keyword_YPN_1"></a> 
     
    500502    </h4> 
    501503 
    502      The first derivative of the interpolating function at the 
     504     
     505 The first derivative of the interpolating function at the 
    503506    point Xn-1. If YPN_1 is omitted, the second derivative at the 
    504507    boundary is set to zero, resulting in a "natural spline." 
Note: See TracChangeset for help on using the changeset viewer.