//////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2008 The Regents of the University of California // // This file is part of Qbox // // Qbox is distributed under the terms of the GNU General Public License // as published by the Free Software Foundation, either version 2 of // the License, or (at your option) any later version. // See the file COPYING in the root directory of this distribution // or . // /////////////////////////////////////////////////////////////////////////////// // // spline.h // /////////////////////////////////////////////////////////////////////////////// // $Id: spline.h,v 1.5 2008-09-08 15:56:20 fgygi Exp $ void spline(int n, double *x, double *y, double yp_left, double yp_right, int bcnat_left, int bcnat_right, double *y2); void splint (int n, double *xa, double *ya, double *y2a, double x, double *y); void splintd (int n, double *xa, double *ya, double *y2a, double x, double *y, double *dy);