1c_ftcurvd(3NCARG) NCAR GRAPHICS c_ftcurvd(3NCARG)
2
3
4
6 c_ftcurvd - calculate derivatives
7
9 int c_ftcurvd (int, float [], float [], int, float [], float []);
10
12 int c_ftcurvd (n, xi, yi, m, xo, yo);
13
15 n The number of input data points. (n > 1)
16
17 xi An array containing the abscissae for the input function.
18
19 yi An array containing the functional values of the input
20 function -- y(k) is the functional value at x(k) for k=0,n.
21
22 m The number of desired derivatives.
23
24 xo An array containing the abscissae for the output values.
25
26 yo An array containing the interpolated derivative values --
27 yo(k) is the functional derivative at xo(k) for k=0,n.
28
30 c_ftcurvd returns an error value as per:
31
32 = 0 -- no error.
33 = 1 -- if n is less than 2.
34 = 2 -- if X values are not strictly increasing.
35
37 c_ftcurvd is called after all of the desired values for control parameā
38 ters have been set using the procedures c_ftseti, c_ftsetr, c_ftsetc.
39 Control parameters that apply to c_ftcurvd are: sig, sl1, sln, sf1.
40
42 To use c_ftcurvd, load the NCAR Graphics library ngmath.
43
45 fitgrid_params, c_ftseti, c_ftsetr, c_ftsetc.
46
47 Complete documentation for Fitgrid is available at URL
48 http://ngwww.ucar.edu/ngdoc/ng/ngmath/fitgrid/fithome.html
49
51 Copyright (C) 2000
52 University Corporation for Atmospheric Research
53
54 The use of this Software is governed by a License Agreement.
55
56
57
58UNIX March 1998 c_ftcurvd(3NCARG)