PLplot  5.15.0
dspline.h
Go to the documentation of this file.
1 #ifndef _DSPLINE_H_
2 #define _DSPLINE_H_
3 //
4 // Copyright (C) 2009 Alan W. Irwin
5 //
6 // This file is part of PLplot.
7 //
8 // PLplot is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU Library General Public License as published
10 // by the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // PLplot is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU Library General Public License for more details.
17 //
18 // You should have received a copy of the GNU Library General Public License
19 // along with PLplot; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 
22 int dspline( double *x, double *y, int n,
23  int if1, double cond1, int ifn, double condn, double *y2 );
24 
25 #endif // _DSPLINE_H_
int dspline(double *x, double *y, int n, int if1, double cond1, int ifn, double condn, double *y2)
Definition: dspline.c:28