|
static int | clip_int (int t, int min, int max) |
|
static double | clip_double (double t, double min, double max) |
|
static void | cubic_interp_init_coefficients (double *a, const double *z, const double *z1) |
|
static double | cubic_eval (const double *a, double t) |
|
static void | cubic_interp_index (double f, double t0, double length, double *t, double *i) |
|
cubic_interp * | cubic_interp_init (const double *data, int n, double tmin, double dt) |
|
void | cubic_interp_free (cubic_interp *interp) |
|
double | cubic_interp_eval (const cubic_interp *interp, double t) |
|
bicubic_interp * | bicubic_interp_init (const double *data, int ns, int nt, double smin, double tmin, double ds, double dt) |
|
void | bicubic_interp_free (bicubic_interp *interp) |
|
double | bicubic_interp_eval (const bicubic_interp *interp, double s, double t) |
|
Go to the source code of this file.
◆ clip_int()
static int clip_int |
( |
int |
t, |
|
|
int |
min, |
|
|
int |
max |
|
) |
| |
|
static |
◆ clip_double()
static double clip_double |
( |
double |
t, |
|
|
double |
min, |
|
|
double |
max |
|
) |
| |
|
static |
◆ cubic_interp_init_coefficients()
static void cubic_interp_init_coefficients |
( |
double * |
a, |
|
|
const double * |
z, |
|
|
const double * |
z1 |
|
) |
| |
|
static |
◆ cubic_eval()
static double cubic_eval |
( |
const double * |
a, |
|
|
double |
t |
|
) |
| |
|
static |
◆ cubic_interp_index()
static void cubic_interp_index |
( |
double |
f, |
|
|
double |
t0, |
|
|
double |
length, |
|
|
double * |
t, |
|
|
double * |
i |
|
) |
| |
|
static |
◆ cubic_interp_init()
cubic_interp * cubic_interp_init |
( |
const double * |
data, |
|
|
int |
n, |
|
|
double |
tmin, |
|
|
double |
dt |
|
) |
| |
◆ cubic_interp_free()
◆ cubic_interp_eval()
double cubic_interp_eval |
( |
const cubic_interp * |
interp, |
|
|
double |
t |
|
) |
| |
◆ bicubic_interp_init()
bicubic_interp * bicubic_interp_init |
( |
const double * |
data, |
|
|
int |
ns, |
|
|
int |
nt, |
|
|
double |
smin, |
|
|
double |
tmin, |
|
|
double |
ds, |
|
|
double |
dt |
|
) |
| |
◆ bicubic_interp_free()
◆ bicubic_interp_eval()
double bicubic_interp_eval |
( |
const bicubic_interp * |
interp, |
|
|
double |
s, |
|
|
double |
t |
|
) |
| |