Class: Numo::GSL::Spline::AkimaPeriodic
- Inherits:
-
Numo::GSL::Spline
- Object
- Numo::GSL::Spline
- Numo::GSL::Spline::AkimaPeriodic
- Defined in:
- ext/numo/gsl/interp/gsl_interp.c
Class Method Summary collapse
-
.new(xa[], ya[]) ⇒ Object
Generate an instance of Numo::GSL::Spline::AkimaPeriodic class, a subclass of Numo::GSL::Spline class with gsl_interp_akima_periodic type.
Methods inherited from Numo::GSL::Spline
#eval, #eval_deriv, #eval_deriv2, #eval_integ, #min_size, #name
Class Method Details
.new(xa[], ya[]) ⇒ Object
Generate an instance of Numo::GSL::Spline::AkimaPeriodic class, a subclass of Numo::GSL::Spline class with gsl_interp_akima_periodic type.
This function initializes the interpolation object interp for the data (xa,ya) where xa and ya are arrays of size size. The interpolation object (gsl_interp) does not save the data arrays xa and ya and only stores the static state computed from the data. The xa data array is always assumed to be strictly ordered, with increasing x values; the behavior for other arrangements is not defined.
328 329 330 331 332 |
# File 'ext/numo/gsl/interp/gsl_interp.c', line 328
static VALUE
spline_akima_periodic_s_new(VALUE self, VALUE v1, VALUE v2)
{
return spline_s_new(self, gsl_interp_akima_periodic, v1, v2);
}
|