11 #ifndef ossimLeastSquaresBilin_INCLUDE 12 #define ossimLeastSquaresBilin_INCLUDE 59 virtual void addSample(
double x,
double yy,
double zmea);
69 virtual bool getLSParms(
double& pa,
double& pb_x,
double& pc_y,
double& pd_xy)
const;
77 virtual void setLSParams(
double pa,
89 virtual inline double lsFitValue(
double xx,
double yy)
const 91 return (bl_a + bl_b*xx + bl_c*yy + bl_d*xx*yy);
131 #endif // LeastSquaresBilinilin_INCL_
double bl_c
linear-Y term.
double bl_a
constant term.
NEWMAT::Matrix * AtA
Normal system coefficient matrix.
Provide 2D Least Squares Bilinear model fitting The math model is that of a bilinear surface of the ...
double bl_b
linear-X term.
virtual double lsFitValue(double xx, double yy) const
interpolate LS-fit value at location (xx,yy) - returns z(xx,yy).
NEWMAT::Matrix * Atb
Normal system RHS vector.