8 lines
245 B
C++
8 lines
245 B
C++
|
// #include "Interpolation.h"
|
|||
|
|
|||
|
// double Interpolation::Linear(std::vector<double> &points, std::vector<double> &values, double t)
|
|||
|
// {
|
|||
|
// auto _C = MathNet::Numerics::Interpolate::Linear(points, values);
|
|||
|
// return _C->Interpolate(t);
|
|||
|
// }
|