aboutsummaryrefslogtreecommitdiff
path: root/docs/curvefitting.tex
diff options
context:
space:
mode:
authorSascha Haeberling <haeberling@google.com>2013-07-23 19:00:21 -0700
committerSascha Haeberling <haeberling@google.com>2013-07-24 12:00:09 -0700
commit1d2624a10e2c559f8ba9ef89eaa30832c0a83a96 (patch)
treef43667ef858dd0f377b15a58a9d5c9a126762c55 /docs/curvefitting.tex
parent0ae28bd5885b5daa526898fcf7c323dc2c3e1963 (diff)
downloadceres-solver-1d2624a10e2c559f8ba9ef89eaa30832c0a83a96.tar.gz
Update ceres to the latest version in google3.
Change-Id: I0165fffa55f60714f23e0096eac89fa68df75a05
Diffstat (limited to 'docs/curvefitting.tex')
-rw-r--r--docs/curvefitting.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/curvefitting.tex b/docs/curvefitting.tex
index 07ccd48..c4bacc2 100644
--- a/docs/curvefitting.tex
+++ b/docs/curvefitting.tex
@@ -17,7 +17,8 @@ class ExponentialResidual {
template <typename T> bool operator()(const T* const m,
const T* const c,
T* residual) const {
- residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]); // $y - e^{mx + c}$
+ // $y - e^{mx + c}$
+ residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
return true;
}