Files
ceres-solver/docs/source/index.rst
T

71 lines
2.2 KiB
ReStructuredText
Raw Normal View History

2013-02-06 01:08:40 -08:00
============
Ceres Solver
============
2016-11-21 22:37:46 -08:00
Ceres Solver [#f1]_ is an open source C++ library for modeling and
solving large, complicated optimization problems. It can be used to
solve `Non-linear Least Squares`_ problems with bounds constraints and
general unconstrained optimization problems. It is a mature, feature
rich, and performant library that has been used in production at
Google since 2010. For more, see :doc:`features`.
`ceres-solver@googlegroups.com
<https://groups.google.com/forum/?fromgroups#!forum/ceres-solver>`_ is
the place for discussions and questions about Ceres Solver. We use the
`GitHub Issue Tracker
<https://github.com/ceres-solver/ceres-solver/issues>`_ to manage bug
reports and feature requests.
2014-04-07 08:36:07 +00:00
.. toctree::
2016-11-21 22:37:46 -08:00
:maxdepth: 1
2014-04-07 08:36:07 +00:00
:hidden:
2017-02-27 11:19:31 -08:00
features
2016-11-21 22:37:46 -08:00
installation
2014-04-07 08:36:07 +00:00
tutorial
2016-11-29 19:45:53 -08:00
derivatives
2017-02-27 11:19:31 -08:00
nnls_modeling
nnls_solving
nnls_covariance
2017-02-27 11:19:31 -08:00
gradient_solver
2014-04-07 08:36:07 +00:00
faqs
2014-10-02 16:16:26 -07:00
users
2014-04-07 08:36:07 +00:00
contributing
version_history
bibliography
license
2014-10-02 16:16:26 -07:00
.. _Non-linear Least Squares: http://en.wikipedia.org/wiki/Non-linear_least_squares
2014-04-07 08:36:07 +00:00
2013-02-06 01:08:40 -08:00
2014-04-07 08:36:07 +00:00
Cite Us
2014-10-02 16:16:26 -07:00
=======
If you use Ceres Solver for a publication, please cite it as::
2013-05-30 07:22:18 -07:00
@software{Agarwal_Ceres_Solver_2022,
author = {Agarwal, Sameer and Mierle, Keir and The Ceres Solver Team},
title = {{Ceres Solver}},
license = {Apache-2.0},
url = {https://github.com/ceres-solver/ceres-solver},
version = {2.1},
year = {2022},
month = {3}
}
2014-10-02 16:16:26 -07:00
.. rubric:: Footnotes
.. [#f1] While there is some debate as to who invented the method of
Least Squares [Stigler]_, there is no questioning the fact
that it was `Carl Friedrich Gauss
<http://www-groups.dcs.st-and.ac.uk/~history/Biographies/Gauss.html>`_
who brought it to the attention of the world. Using just 22
observations of the newly discovered asteroid `Ceres
<http://en.wikipedia.org/wiki/Ceres_(dwarf_planet)>`_, Gauss
used the method of least squares to correctly predict when
and where the asteroid will emerge from behind the Sun
[TenenbaumDirector]_. We named our solver after Ceres to
celebrate this seminal event in the history of astronomy,
statistics and optimization.