Mantid
Loading...
Searching...
No Matches
Spline.cpp
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2025 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
8#include "MantidKernel/DllConfig.h"
9
10namespace Mantid::Kernel {
11
12EXTERN_MANTID_KERNEL template class MANTID_KERNEL_DLL CubicSpline<double, double>;
13EXTERN_MANTID_KERNEL template class MANTID_KERNEL_DLL LinearSpline<double, double>;
14
15} // namespace Mantid::Kernel
Cubic spline interpolation using GSL.
Definition Spline.h:81
Linear interpolation using GSL.
Definition Spline.h:95