Program Listing for File InputInterpolation.h
↰ Return to documentation for file (include/file_manager/InputInterpolation.h)
// _______. ______ __ ___ .__ __. .___________. __ ___ ___ //
// / | / || | / \ | \ | | | || | \ \ / / //
// | (----`| ,----'| | / ^ \ | \| | `---| |----`| | \ V / //
// \ \ | | | | / /_\ \ | . ` | | | | | > < //
// .----) | | `----.| | / _____ \ | |\ | | | | | / . \ //
// |_______/ \______||__| /__/ \__\ |__| \__| |__| |__| /__/ \__\ //
// //
// Originally developed by D. Pizzocri & T. Barani //
// //
// Version: 2.2.1 //
// Year: 2025 //
// Authors: D. Pizzocri, G. Zullo. //
// //
#ifndef INPUT_INTERPOLATION_H
#define INPUT_INTERPOLATION_H
#include <vector>
double InputInterpolation(double x, std::vector<double> xx, std::vector<double> yy,
unsigned short int n);
#endif