| 180 | } |
| 181 | |
| 182 | double Polynomial2D::integral(const Eigen::MatrixXd& coefficients, const double& x_in, const double& y_in, const int& axis = -1) { |
| 183 | return this->evaluate(this->integrateCoeffs(coefficients, axis, 1), x_in, y_in); |
| 184 | } |
| 185 | |
| 186 | /// Uses the Brent solver to find the roots of p(x_in,y_in)-z_in |
| 187 | /// @param res Poly2DResidual object to calculate residuals and derivatives |
no test coverage detected