Hawaii Hybrid
|
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
Go to the source code of this file.
Classes | |
struct | CSpline |
Functions | |
CSpline * | cspline_init (double *x, double *y, size_t len, double fp0, double fpn) |
bool | cspline_eval (CSpline *cs, double x, double *y) |
void | cspline_free (CSpline *cs) |
bool cspline_eval | ( | CSpline * | cs, |
double | x, | ||
double * | y ) |
void cspline_free | ( | CSpline * | cs | ) |
CSpline * cspline_init | ( | double * | x, |
double * | y, | ||
size_t | len, | ||
double | fp0, | ||
double | fpn ) |