|
static double | cpart (double complex z, int i) |
|
static double | to_phase_angle (double arg) |
|
static double | dsinc (double t) |
|
static double | d2sinc (double t) |
|
static void | fdf_lanczos (double fdf[3], double t, double a) |
|
static void | print_gsl_error (const char *reason, const char *file, int line, __attribute__((unused)) int gsl_errno) |
|
static void | ran_amp_poly_quadratic (gsl_rng *rng, double poly[3], double *t_max, double *amp_max, unsigned int window) |
|
static void | ran_arg_poly_linear (gsl_rng *rng, double poly[2]) |
|
int | main (__attribute__((unused)) int argc, __attribute__((unused)) char **argv) |
|
Go to the source code of this file.
◆ TEST_WINDOW_SIZE_TOO_SMALL
#define TEST_WINDOW_SIZE_TOO_SMALL |
( |
|
FUNC, |
|
|
|
MIN_WINDOW |
|
) |
| |
Value:{ \
gsl_error_handler_t *old_handler = gsl_set_error_handler_off(); \
for (unsigned int window = 0; window < MIN_WINDOW; window ++) \
{ \
double complex
y[2 * window + 1]; \
result =
FUNC(&tmax, &ymax, &
y[window], window); \
gsl_test(result != GSL_EINVAL,
"%s window=%u returns GSL_EINVAL", #
FUNC, window); \
} \
gsl_set_error_handler(old_handler); \
}
Definition at line 95 of file TriggerInterpolateTest.c.
◆ cpart()
static double cpart |
( |
double complex |
z, |
|
|
int |
i |
|
) |
| |
|
static |
◆ to_phase_angle()
static double to_phase_angle |
( |
double |
arg | ) |
|
|
static |
◆ dsinc()
static double dsinc |
( |
double |
t | ) |
|
|
static |
◆ d2sinc()
static double d2sinc |
( |
double |
t | ) |
|
|
static |
◆ fdf_lanczos()
static void fdf_lanczos |
( |
double |
fdf[3], |
|
|
double |
t, |
|
|
double |
a |
|
) |
| |
|
static |
◆ print_gsl_error()
static void print_gsl_error |
( |
const char * |
reason, |
|
|
const char * |
file, |
|
|
int |
line, |
|
|
__attribute__((unused)) int |
gsl_errno |
|
) |
| |
|
static |
◆ ran_amp_poly_quadratic()
static void ran_amp_poly_quadratic |
( |
gsl_rng * |
rng, |
|
|
double |
poly[3], |
|
|
double * |
t_max, |
|
|
double * |
amp_max, |
|
|
unsigned int |
window |
|
) |
| |
|
static |
◆ ran_arg_poly_linear()
static void ran_arg_poly_linear |
( |
gsl_rng * |
rng, |
|
|
double |
poly[2] |
|
) |
| |
|
static |
◆ main()