This evaluates the error term and additionally computes the Jacobians.
| 698 | |
| 699 | // This evaluates the error term and additionally computes the Jacobians. |
| 700 | bool ImuError::Evaluate(double const* const* parameters, double* residuals, double** jacobians) const { |
| 701 | return EvaluateWithMinimalJacobians(parameters, residuals, jacobians, NULL); |
| 702 | } |
| 703 | |
| 704 | // This evaluates the error term and additionally computes |
| 705 | // the Jacobians in the minimal internal representation. |