def fit(*args): """ fit(size_t numObs, double const * x, double const * y, size_t numCoeffs) -> Poly1D fit(MatrixDouble x, MatrixDouble y, MatrixDouble z, size_t nx, size_t ny) -> Poly2D fit(size_t numRows, size_t numCols, double const * x, double const * y, double const * z, size_t nx, size_t ny) -> Poly2D """ return _math_poly.fit(*args)
def fit(*args): """ fit(size_t numObs, double const * x, double const * y, size_t order) -> Poly1D fit(MatrixDouble x, MatrixDouble y, MatrixDouble z, size_t nx, size_t ny) -> Poly2D fit(size_t numRows, size_t numCols, double const * x, double const * y, double const * z, size_t nx, size_t ny) -> Poly2D fit(VectorDouble xObs, VectorDouble yObs0, VectorDouble yObs1, VectorDouble yObs2, size_t order) -> PolyVector3 fit(VectorDouble xObsVector, MatrixDouble yObsMatrix, size_t order) -> PolyVector3 fit(std_vector_double xObs, std_vector_double yObs0, std_vector_double yObs1, std_vector_double yObs2, size_t order) -> PolyVector3 """ return _math_poly.fit(*args)