Logo ROOT   6.10/00
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
math/doc/Math.md
Go to the documentation of this file.
1 /**
2 
3 \defgroup Math Math
4 
5 \brief The %ROOT Mathematical Libraries.
6 
7 See the \ref MathPage "Mathematical Libraries" description page.
8 
9 
10 \page MathPage The ROOT Mathematical Libraries
11 
12 
13 The %ROOT Mathematical libraries consist of the following components:
14 
15 - \subpage MathCorePage "MathCore": a self-consistent minimal set of tools required for the basic numerical computing.
16  It provides the major mathematical functions in the namespaces ROOT::Math and TMath,
17  classes for random number generators, TRandom, class for complex numbers, TComplex,
18  common interfaces for function evaluation and numerical algorithms.
19  Basic implementations of some of the numerical algorithms such as integration or derivation, are also provided by MathCore.
20  together with the core classes needed to fit any generic data set.
21 
22 - \subpage MathMorePage "MathMore": a package incorporating advanced numerical functionality and dependent on external libraries like the GNU Scientific Library ([GSL](http://www.gnu.org/software/gsl/)). It complements the MathCore library by providing a more complete sets of special mathematical functions and implementations of the numerical algorithms interfaces defined in MathCore using GSL.
23 
24 - **Minimization and Fitting Libraries**
25  Libraries required for numerical minimization and fitting. The minimization libraries include the numerical methods for solving the fitting problem by finding minimum of multi-dimensional
26  function. The current common interface for minimization is the class ROOT::Math::Minimizer and implemented by derived classes in the minimization and fitting libraries. The fitting in %ROOT is
27  organized in fitting classes present in MathCore in the (ROOT::Fit namespace) for providing the fitting functionality and the use the minimization libraries via the common interface (ROOT::Math::Minimizer). In detail the minimization libraries, implementing all the new and old minimization interface, include:
28 
29  - \ref MinuitOld "Minuit": library providing via a class TMinuit an implementation of the popular MINUIT minimization package. In addition the library contains also an implementation of the linear fitter (class TLinearFitter), for solving linear least square fits.
30  - \subpage Minuit2Page "Minuit2": new object-oriented implementation of MINUIT, with the same minimization algorithms (such as Migrad or Simplex). In addition it provides a new implementation of the Fumili algorithm, a specialized method for finding the minimum of a standard least square or likelihood functions.
31  - **Fumili**: library providing the implementation of the original Fumili fitting algorithm (class TFumili).
32 
33 - **Linear algebra**. Two libraries are contained in %ROOT for describing linear algebra matrices and vector classes:
34 
35  - Matrix: general matrix package providing matrix classes (TMatrixD and TMatrixF) and vector classes (TVectorD and TVectorF) and the complete environment to perform linear algebra calculations, like equation solving and eigenvalue decompositions.
36  - \subpage SMatrixPage "SMatrix": package optimized for high performances matrix and vector computations of small and fixed size. It is based on expression templates to achieve an high level optimization.
37 
38 
39 - **Physics Vectors**: Classes for describing vectors in 2, 3 and 4 dimensions (relativistic vectors) and their rotation and transformation algorithms. Two package exist in %ROOT:
40 
41  - Physics: library with the TVector3 and TLorentzVector classes.
42  - GenVector: new library providing generic class templates for modeling the vectors. See the \ref Vector "GenVector" page.
43 
44 - \ref Unuran "UNURAN": Package with universal algorithms for generating non-uniform pseudo-random numbers, from a large classes of continuous or discrete distributions in one or multi-dimensions.
45 
46 - **Foam** Multi-dimensional general purpose Monte Carlo event generator (and integrator). It generates randomly points (vectors) according to an arbitrary probability distribution in n dimensions.
47 
48 - **FFTW** Library with implementation of the fast Fourier transform (FFT) using the FFTW package. It requires a previous installation of [FFTW](http://www.fftw.org)>FFTW).
49 
50 - **MLP** Library with the neural network class, TMultiLayerPerceptron based on the NN algorithm from the mlpfit package.
51 
52 - **Quadp** Optimization library with linear and quadratic programming methods. It is based on the Matrix package.
53 
54 
55 Further information is available at the following links:
56 
57 - [The Math chapter in the user guide](https://root.cern.ch/root/htmldoc/guides/users-guide/MathLibraries.html)
58 - [The Linear Algebra chapter in the user guide](https://root.cern.ch/root/htmldoc/guides/users-guide/LinearAlgebra.html)
59 - [The Fitting chapter in the user guide](https://root.cern.ch/root/htmldoc/guides/users-guide/FittingHistograms.html)
60 - [Inventory of Math functions and algorithms] (http://project-mathlibs.web.cern.ch/project-mathlibs/mathTable.html)
61