ISCE_INSAR/components/isceobj/Util/FieldInterpolator/src/AzimuthPolyInterpolator.cpp

10 lines
188 B
C++

#include <cmath>
#include "AzimuthPolyInterpolator.h"
void AzimuthPolyInterpolator::getField(double row, double col)
{
double res;
res = evalPoly1d(&poly, row);
return res;
}