File: c_ftcurvd.m

package info (click to toggle)
ncl 6.6.2.dfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 230,768 kB
  • sloc: ansic: 636,074; fortran: 443,915; csh: 19,652; sed: 11,224; yacc: 4,248; f90: 4,079; sh: 3,284; xml: 1,928; python: 1,841; lex: 1,298; perl: 995; java: 447; makefile: 389; objc: 291
file content (54 lines) | stat: -rw-r--r-- 1,596 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.\"
.\"	$Id: c_ftcurvd.m,v 1.4 2008-07-27 03:35:37 haley Exp $
.\"
.TH c_ftcurvd 3NCARG "March 1998" UNIX "NCAR GRAPHICS"
.SH NAME
c_ftcurvd - calculate derivatives
.SH FUNCTION PROTOTYPE
int c_ftcurvd (int, float [], float [], int, float [], float []);
.SH SYNOPSIS
int c_ftcurvd (n, xi, yi, m, xo, yo);
.SH DESCRIPTION
.IP n 12
The number of input data points. (n > 1) 
.IP xi 12
An array containing the abscissae for the input function. 
.IP yi 12
An array containing the functional values of the input 
function -- y(k) is the functional value at x(k) for k=0,n. 
.IP m 12
The number of desired derivatives.
.IP xo 12
An array containing the abscissae for the output values.
.IP yo 12
An array containing the interpolated derivative 
values -- yo(k) is the functional derivative at xo(k) for k=0,n. 
.SH RETURN VALUE
c_ftcurvd returns an error value as per: 
.br
.sp
= 0 -- no error.
.br
= 1 -- if n is less than 2.
.br
= 2 -- if X values are not strictly increasing.
.br
.SH USAGE
c_ftcurvd is called after all of the desired values for control parameters 
have been set using the procedures c_ftseti, c_ftsetr, c_ftsetc. 
Control parameters that apply to c_ftcurvd are: sig, sl1, sln, sf1.
.SH ACCESS
To use c_ftcurvd, load the NCAR Graphics library ngmath.
.SH SEE ALSO
fitgrid_params, c_ftseti, c_ftsetr, c_ftsetc.
.sp
Complete documentation for Fitgrid is available at URL
.br
http://ngwww.ucar.edu/ngdoc/ng/ngmath/fitgrid/fithome.html
.SH COPYRIGHT
Copyright (C) 2000
.br
University Corporation for Atmospheric Research
.br

The use of this Software is governed by a License Agreement.