ASCOT5
Loading...
Searching...
No Matches
spline.h
Go to the documentation of this file.
1
5#ifndef SPLINE_H
6#define SPLINE_H
7#include "../ascot5.h"
8
9void splineexpl(real* f, int n, int bc, real* c);
10void splinecomp(real* f, int n, int bc, real* c);
11#endif
Main header file for ASCOT5.
double real
Definition ascot5.h:85
void splinecomp(real *f, int n, int bc, real *c)
Calculate compact cubic spline interpolation coefficients in 1D.
Definition splinecomp.c:22
void splineexpl(real *f, int n, int bc, real *c)
Calculate explicit cubic spline interpolation coefficients in 1D.
Definition splineexpl.c:22