gcvspl.h
1/***************************************************************************
2 *
3 * Copyright (C) 2021 by Willem van Straten
4 * Licensed under the Academic Free License version 2.1
5 *
6 ***************************************************************************/
7
8// psrchive/Util/third/gcvspl/slalib.h
9
10#ifndef __GCVSPL_DECL_H
11#define __GCVSPL_DECL_H
12
13/*
14 This C wrapper allows PSRCHIVE software to link against the Fortran implementation of GCVSPL.
15*/
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21 int gcvspl (double *x, double *y, int ny,
22 double *wx, double *wy, int m, int n, int k,
23 int md, double val, double *c, int nc,
24 double *wk);
25
26 double splder ( int ider, int m, int n, double t,
27 double *x, double *c__, int *l, double *q );
28
29#ifdef __cplusplus
30 }
31#endif
32
33#endif
34

Generated using doxygen 1.14.0