File: spl-array.h

package info (click to toggle)
xmorph 1%3A20050408b
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,712 kB
  • ctags: 2,109
  • sloc: ansic: 24,471; sh: 11,182; cpp: 1,546; makefile: 954; sed: 16
file content (21 lines) | stat: -rw-r--r-- 549 bytes parent folder | download
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