ROOT
Version v6.34
master
v6.32
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
►
core
►
documentation
►
geom
►
graf2d
►
graf3d
►
gui
►
hist
►
html
►
io
►
main
▼
math
doc
►
fftw
►
foam
►
fumili
►
genetic
►
genvector
►
mathcore
►
mathmore
►
matrix
►
minuit
▼
minuit2
doc
▼
inc
▼
Minuit2
►
ABObj.h
►
ABProd.h
►
ABSum.h
►
ABTypes.h
►
AnalyticalGradientCalculator.h
►
BFGSErrorUpdator.h
►
CombinedMinimizer.h
►
CombinedMinimumBuilder.h
►
ContoursError.h
►
DavidonErrorUpdator.h
►
ExternalInternalGradientCalculator.h
FCNAdapter.h
►
FCNBase.h
FCNGradAdapter.h
►
FCNGradientBase.h
FumiliBuilder.h
FumiliChi2FCN.h
FumiliErrorUpdator.h
FumiliFCNAdapter.h
FumiliFCNBase.h
►
FumiliGradientCalculator.h
FumiliMaximumLikelihoodFCN.h
FumiliMinimizer.h
FumiliStandardChi2FCN.h
FumiliStandardMaximumLikelihoodFCN.h
►
FunctionGradient.h
►
FunctionMinimum.h
GenericFunction.h
►
GradientCalculator.h
►
HessianGradientCalculator.h
►
InitialGradientCalculator.h
►
LaInverse.h
►
LaOuterProduct.h
►
LaProd.h
►
LaSum.h
►
LASymMatrix.h
►
LAVector.h
►
MatrixInverse.h
►
MinimumBuilder.h
►
MinimumError.h
►
MinimumErrorUpdator.h
►
MinimumParameters.h
►
MinimumSeed.h
►
MinimumSeedGenerator.h
►
MinimumState.h
►
MinosError.h
►
Minuit2Minimizer.h
►
MinuitParameter.h
►
MnApplication.h
MnConfig.h
►
MnContours.h
►
MnCovarianceSqueeze.h
►
MnCross.h
►
MnEigen.h
►
MnFcn.h
►
MnFumiliMinimize.h
►
MnFunctionCross.h
►
MnGlobalCorrelationCoeff.h
►
MnHesse.h
MnLineSearch.h
►
MnMachinePrecision.h
MnMatrix.h
►
MnMatrixfwd.h
►
MnMigrad.h
►
MnMinimize.h
►
MnMinos.h
MnParabola.h
►
MnParabolaFactory.h
MnParabolaPoint.h
►
MnParameterScan.h
►
MnPlot.h
►
MnPosDef.h
►
MnPrint.h
►
MnRefCountedPointer.h
►
MnReferenceCounter.h
►
MnScan.h
►
MnSeedGenerator.h
►
MnSimplex.h
►
MnStrategy.h
►
MnTiny.h
►
MnTraceObject.h
►
MnUserCovariance.h
►
MnUserFcn.h
►
MnUserParameters.h
►
MnUserParameterState.h
►
MnUserTransformation.h
►
MnVectorTransform.h
►
ModularFunctionMinimizer.h
►
MPIProcess.h
►
NegativeG2LineSearch.h
►
Numerical2PGradientCalculator.h
►
NumericalDerivator.h
ParametricFunction.h
►
ScanBuilder.h
►
ScanMinimizer.h
►
SimplexBuilder.h
►
SimplexMinimizer.h
►
SimplexParameters.h
►
SimplexSeedGenerator.h
►
SinParameterTransformation.h
►
SqrtLowParameterTransformation.h
►
SqrtUpParameterTransformation.h
►
StackAllocator.h
►
VariableMetricBuilder.h
►
VariableMetricEDMEstimator.h
►
VariableMetricMinimizer.h
►
VectorOuterProduct.h
►
TMinuit2TraceObject.h
►
src
►
mlp
►
physics
►
quadp
►
rtools
►
smatrix
►
splot
►
unuran
►
vecops
►
montecarlo
►
net
►
proof
►
roofit
►
sql
►
tmva
►
tree
►
tutorials
►
v6-34-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
MatrixInverse.h
Go to the documentation of this file.
1
// @(#)root/minuit2:$Id$
2
// Authors: M. Winkler, F. James, L. Moneta, A. Zsenei 2003-2005
3
4
/**********************************************************************
5
* *
6
* Copyright (c) 2005 LCG ROOT Math team, CERN/PH-SFT *
7
* *
8
**********************************************************************/
9
10
#ifndef ROOT_Minuit2_MatrixInverse
11
#define ROOT_Minuit2_MatrixInverse
12
13
#include "
Minuit2/ABTypes.h
"
14
#include "
Minuit2/ABObj.h
"
15
16
namespace
ROOT
{
17
18
namespace
Minuit2 {
19
20
template
<
class
mtype,
class
M,
class
T>
21
class
MatrixInverse
{
22
23
public
:
24
MatrixInverse
(
const
M &obj) :
fObject
(obj) {}
25
26
~MatrixInverse
() {}
27
28
typedef
mtype
Type
;
29
30
const
M &
Obj
()
const
{
return
fObject
; }
31
32
private
:
33
M
fObject
;
34
};
35
36
template
<
class
M,
class
T>
37
class
MatrixInverse
<
vec
, M, T> {
38
39
private
:
40
MatrixInverse
(
const
M &obj) :
fObject
(obj) {}
41
42
public
:
43
~MatrixInverse
() {}
44
45
typedef
vec
Type
;
46
47
const
M &
Obj
()
const
{
return
fObject
; }
48
49
private
:
50
M
fObject
;
51
};
52
53
template
<
class
mt,
class
M,
class
T>
54
inline
ABObj<mt, MatrixInverse<mt, ABObj<mt, M, T>
, T>, T>
Inverse
(
const
ABObj<mt, M, T>
&obj)
55
{
56
return
ABObj<mt, MatrixInverse<mt, ABObj<mt, M, T>
, T>, T>(
MatrixInverse<mt, ABObj<mt, M, T>
, T>(obj));
57
}
58
59
}
// namespace Minuit2
60
61
}
// namespace ROOT
62
63
#endif
// ROOT_Minuit2_MatrixInverse
ABObj.h
ABTypes.h
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
ROOT::Minuit2::MatrixInverse< vec, M, T >::MatrixInverse
MatrixInverse(const M &obj)
Definition
MatrixInverse.h:40
ROOT::Minuit2::MatrixInverse< vec, M, T >::~MatrixInverse
~MatrixInverse()
Definition
MatrixInverse.h:43
ROOT::Minuit2::MatrixInverse< vec, M, T >::Obj
const M & Obj() const
Definition
MatrixInverse.h:47
ROOT::Minuit2::MatrixInverse< vec, M, T >::Type
vec Type
Definition
MatrixInverse.h:45
ROOT::Minuit2::MatrixInverse< vec, M, T >::fObject
M fObject
Definition
MatrixInverse.h:50
ROOT::Minuit2::MatrixInverse
Definition
MatrixInverse.h:21
ROOT::Minuit2::MatrixInverse::~MatrixInverse
~MatrixInverse()
Definition
MatrixInverse.h:26
ROOT::Minuit2::MatrixInverse::fObject
M fObject
Definition
MatrixInverse.h:33
ROOT::Minuit2::MatrixInverse::Type
mtype Type
Definition
MatrixInverse.h:28
ROOT::Minuit2::MatrixInverse::MatrixInverse
MatrixInverse(const M &obj)
Definition
MatrixInverse.h:24
ROOT::Minuit2::MatrixInverse::Obj
const M & Obj() const
Definition
MatrixInverse.h:30
ROOT::Minuit2::vec
Definition
ABTypes.h:21
ROOT::Minuit2::Inverse
ABObj< sym, MatrixInverse< sym, ABObj< sym, LASymMatrix, double >, double >, double > Inverse(const ABObj< sym, LASymMatrix, double > &obj)
LAPACK Algebra functions specialize the Invert function for LASymMatrix.
Definition
LaInverse.h:24
ROOT
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Definition
EExecutionPolicy.hxx:4
math
minuit2
inc
Minuit2
MatrixInverse.h
ROOT tags/6-34-04 - Reference Guide Generated on Wed Mar 26 2025 04:46:07 (GVA Time) using Doxygen 1.10.0