#include <Eigen/Dense>
#include <iostream>
#include <vector>
Go to the source code of this file.
Functions |
template<class indepVarType , class depVarType > |
void | linearInterpolation (const indepVarType &xStart, const indepVarType &xEnd, const depVarType &yStart, const depVarType &yEnd, const indepVarType &dx, std::vector< indepVarType > &xInterp, std::vector< depVarType > &yInterp, bool overwrite=true, bool ignoreStart=false) |
template<class indepVarType , class depVarType > |
void | linearInterpolation (const std::vector< indepVarType > &xVec, const std::vector< depVarType > &yVec, const indepVarType &dx, std::vector< indepVarType > &xInterp, std::vector< depVarType > &yInterp) |
Function Documentation
template<class indepVarType , class depVarType >
void linearInterpolation |
( |
const indepVarType & |
xStart, |
|
|
const indepVarType & |
xEnd, |
|
|
const depVarType & |
yStart, |
|
|
const depVarType & |
yEnd, |
|
|
const indepVarType & |
dx, |
|
|
std::vector< indepVarType > & |
xInterp, |
|
|
std::vector< depVarType > & |
yInterp, |
|
|
bool |
overwrite = true , |
|
|
bool |
ignoreStart = false |
|
) |
| |
template<class indepVarType , class depVarType >
void linearInterpolation |
( |
const std::vector< indepVarType > & |
xVec, |
|
|
const std::vector< depVarType > & |
yVec, |
|
|
const indepVarType & |
dx, |
|
|
std::vector< indepVarType > & |
xInterp, |
|
|
std::vector< depVarType > & |
yInterp |
|
) |
| |