46 Factorization factorization_;
68 Factorization factorization = CHOLESKY);
84 Factorization factorization = CHOLESKY);
101 Factorization factorization = CHOLESKY);
104 void print(
const std::string& str =
"Marginals: ",
const KeyFormatter& keyFormatter = DefaultKeyFormatter)
const;
111 Matrix marginalInformation(
Key variable)
const;
114 Matrix marginalCovariance(
Key variable)
const;
128 void computeBayesTree();
131 void computeBayesTree(
const Ordering& ordering);
134#ifdef GTSAM_ALLOW_DEPRECATED_SINCE_V41
137 const Ordering& ordering) :
Marginals(graph, solution, ordering, factorization) {}
140 GTSAM_DEPRECATED Marginals(
const GaussianFactorGraph& graph,
const Values& solution, Factorization factorization,
141 const Ordering& ordering) : Marginals(graph, solution, ordering, factorization) {}
144 GTSAM_DEPRECATED Marginals(
const GaussianFactorGraph& graph,
const VectorValues& solution, Factorization factorization,
145 const Ordering& ordering) : Marginals(graph, solution, ordering, factorization) {}
178 const auto indexI = indices_.at(iVariable);
179 const auto indexJ = indices_.at(jVariable);
180 return blockMatrix_.
block(indexI, indexJ);
185 return (*
this)(iVariable, jVariable);
194 void print(
const std::string& s =
"",
const KeyFormatter& formatter = DefaultKeyFormatter)
const;
198 blockMatrix_(dims, fullMatrix), keys_(keys), indices_(
Ordering(keys).invert()) {}
200 friend class Marginals;
Gaussian Bayes Tree, the result of eliminating a GaussianJunctionTree.
A non-templated config holding any types of Manifold-group elements.
Factor Graph consisting of non-linear factors.
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
FastVector< Key > KeyVector
Define collection type once and for all - also used in wrappers.
Definition: Key.h:86
Point3 optimize(const NonlinearFactorGraph &graph, const Values &values, Key landmarkKey)
Optimize for triangulation.
Definition: triangulation.cpp:73
void print(const Matrix &A, const string &s, ostream &stream)
print without optional string, must specify cout yourself
Definition: Matrix.cpp:155
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:69
std::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:35
Definition: SymmetricBlockMatrix.h:52
Matrix block(DenseIndex I, DenseIndex J) const
Get a copy of a block (anywhere in the matrix).
Definition: SymmetricBlockMatrix.cpp:54
Eigen::SelfAdjointView< constBlock, Eigen::Upper > selfadjointView(DenseIndex I, DenseIndex J) const
Return the square sub-matrix that contains blocks(i:j, i:j).
Definition: SymmetricBlockMatrix.h:161
Definition: Ordering.h:34
A Bayes tree representing a Gaussian density.
Definition: GaussianBayesTree.h:52
boost::shared_ptr< This > shared_ptr
shared_ptr to this class
Definition: GaussianFactor.h:42
A Linear Factor Graph is a factor graph where all factors are Gaussian, i.e.
Definition: GaussianFactorGraph.h:69
This class represents a collection of vector-valued variables associated each with a unique integer i...
Definition: VectorValues.h:74
A class for computing Gaussian marginals of variables in a NonlinearFactorGraph.
Definition: Marginals.h:32
Factorization
The linear factorization mode - either CHOLESKY (faster and suitable for most problems) or QR (slower...
Definition: Marginals.h:37
Marginals()
Default constructor only for wrappers.
Definition: Marginals.h:52
A class to store and access a joint marginal, returned from Marginals::jointMarginalCovariance and Ma...
Definition: Marginals.h:153
Matrix at(Key iVariable, Key jVariable) const
Synonym for operator()
Definition: Marginals.h:184
Matrix fullMatrix() const
The full, dense covariance/information matrix of the joint marginal.
Definition: Marginals.h:189
Matrix operator()(Key iVariable, Key jVariable) const
Access a block, corresponding to a pair of variables, of the joint marginal.
Definition: Marginals.h:177
JointMarginal()
Default constructor only for wrappers.
Definition: Marginals.h:162
A non-linear factor graph is a graph of non-Gaussian, i.e.
Definition: NonlinearFactorGraph.h:78
A non-templated config holding any types of Manifold-group elements.
Definition: Values.h:63