Ticket #737: bvsp-spline-doc.diff

File bvsp-spline-doc.diff, 1.4 KB (added by Mario Domenech Goulart, 12 years ago)
  • bvsp-spline

     
    3535
    3636=== Library procedures
    3737
    38 <procedure>
    39  (compute n k x y
    40   #!key
    41                  (shape-constraint 'none)
    42                  (boundary-condition 'none)
    43                  (derivative-computation 'order2)
    44                  (d0 #f) (dnp #f) (d20 #f) (d2np #f) (eps 1e-4)
    45                  (constr #f) (beta #f) (betainv #f) (rho #f) (rhoinv #f)
    46                  (kmax #f) (maxstp #f)
    47                  (d #f) (d2 #f) )
    48 </procedure>
     38<procedure>(compute n k x y #!key (shape-constraint 'none) (boundary-condition 'none) (derivative-computation 'order2) (d0 #f) (dnp #f) (d20 #f) (d2np #f) (eps 1e-4) (constr #f) (beta #f) (betainv #f) (rho #f) (rhoinv #f) (kmax #f) (maxstp #f) (d #f) (d2 #f) )</procedure>
    4939
    5040
    5141Computes the coefficients of a shape-preserving spline, of continuity
     
    8676; d2: SRFI-4 {{f64vector}} value containing the second derivatives at the points in X (only used when {{derivative-computation}} is {{'classic}} and K=2)
    8777
    8878
    89 <procedure>
    90  (evaluate n k x y d d2 xtab errc
    91   #!key
    92   (search-method 'binary)
    93   (derivatives 2)
    94  )
    95 </procedure>
     79<procedure>(evaluate n k x y d d2 xtab errc #!key (search-method 'binary) (derivatives 2))</procedure>
    9680
    9781Evaluates the given spline at points given by argument {{XTAB}}, which
    9882must be an SRFI-4 {{f64vector}} value.  Arguments {{N K X Y}} have the