Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Tools)
(Boost Math Library: uBLAS determinant example)
Line 65: Line 65:
  
 
== Boost Math Library ==
 
== Boost Math Library ==
 +
=== uBLAS ===
 +
* [[CPP/Boost/Math/uBLAS/determinant]] Calculating the determinant of a matrix using boost::numeric::lu_factorize
 
=== Tools ===
 
=== Tools ===
 
* [[CPP/Boost/Math/Tools/brent_find_minima|brent_find_minima]] Find a bracketed minimum of a function
 
* [[CPP/Boost/Math/Tools/brent_find_minima|brent_find_minima]] Find a bracketed minimum of a function
 
* [[CPP/Boost/Math/Tools/TOMS748|TOMS748 root finding algorithm]] Find a bracketed root(zero) of a function
 
* [[CPP/Boost/Math/Tools/TOMS748|TOMS748 root finding algorithm]] Find a bracketed root(zero) of a function

Revision as of 08:24, 14 August 2011

The following examples are frequent use cases of parts of the Boost (http://www.boost.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.

Boost Graph Library (BGL)

Basics

I/O

Algorithms

Visualization

Wish List

Examples in this section are either shells or something is wrong with them that must be fixed before they can graduate into real examples.

Boost (Generic) Geometry Library

Boost Math Library

uBLAS

Tools