~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to stdred/feros/incl/fitfunc.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)fitfunc.h        19.1 (ESO-IPG) 02/25/03 14:21:11 */
 
2
/*
 
3
 
 
4
various fitting functions
 
5
 
 
6
*/
 
7
 
 
8
extern void fit_gh 
 
9
(
 
10
#ifdef __STDC__
 
11
 double *, double *, int, double *, int, double *
 
12
#endif
 
13
 );
 
14
 
 
15
extern void dhermite 
 
16
(
 
17
#ifdef __STDC__
 
18
 double x, double p[], int np
 
19
#endif
 
20
 );
 
21
 
 
22
extern double fdhermite 
 
23
(
 
24
#ifdef __STDC__
 
25
 double x, double p[], int np
 
26
#endif
 
27
 );
 
28