mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-31 09:30:36 +08:00
58b1e1b53d
This is just a very bare bones beginning to this chapter. But it opens the door to actually adding content to this one tip/trick at a time. Change-Id: I2aa386ba4da66dba5308e3f4ed4d434e44e44fd9
18 lines
506 B
ReStructuredText
18 lines
506 B
ReStructuredText
.. _chapter-tricks:
|
|
|
|
===================
|
|
Tips, Tricks & FAQs
|
|
===================
|
|
|
|
A collection of miscellanous tips, tricks and frequently asked
|
|
questions
|
|
|
|
Derivatives
|
|
===========
|
|
|
|
The single most important bit of advice for users of Ceres Solver is
|
|
to use analytic/automatic differentiation when you can. It is tempting
|
|
to take the easy way out and use numeric differentiation. This is a
|
|
bad idea. Numeric differentiation is slow, ill-behaved, hard to get
|
|
right and results in poor convergence behaviour.
|