File: spl-array.h

package info (click to toggle)
xmorph 1%3A20090926
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 5,624 kB
  • ctags: 2,103
  • sloc: ansic: 20,002; sh: 10,756; cpp: 1,231; makefile: 579; sed: 16
file content (21 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* spl-array.h: Spline interpolation support routines for matrices
//
// Written and Copyright (C) 1993-1999 by Michael J. Gourlay
//
// NO WARRANTEES, EXPRESS OR IMPLIED.
*/

#ifndef _SPL_ARRAY_H__INCLUDED_
#define _SPL_ARRAY_H__INCLUDED_

#include "spline.h"

int
hermite3_array2(const double *kx, const double *ky, long nk, 
		double sx_start,double sx_step, double *sy, long ns, 
		int howto_extend/* 0-> constant 1-> linear */
		);

extern int hermite3_array (const double *kx, const double *ky, long nk, double *sx, double *sy, long ns);

#endif