HighMap library (C++)
|
Defines a 1D interpolation class using the GSL (GNU Scientific Library). More...
Go to the source code of this file.
Classes | |
class | hmap::Interpolator1D |
A class for performing 1D interpolation using the GSL library. More... | |
Namespaces | |
namespace | hmap |
Enumerations | |
enum | hmap::InterpolationMethod1D : int { hmap::AKIMA , hmap::AKIMA_PERIODIC , hmap::CUBIC , hmap::CUBIC_PERIODIC , hmap::LINEAR , hmap::POLYNOMIAL , hmap::STEFFEN } |
Enumeration of the available 1D interpolation methods. More... | |
Defines a 1D interpolation class using the GSL (GNU Scientific Library).
This file contains the Interpolator1D
class and InterpolationMethod1D
enum, which provide a simple interface for performing 1D interpolation with various methods available in the GSL. The interpolation methods include Akima, cubic, linear, polynomial, and Steffen interpolation.