gtsam 4.2
gtsam
Loading...
Searching...
No Matches
HessianFactor-inl.h
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2
3 * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4 * Atlanta, Georgia 30332-0415
5 * All Rights Reserved
6 * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7
8 * See LICENSE for the license information
9
10 * -------------------------------------------------------------------------- */
11
18
19#pragma once
20
21namespace gtsam {
22
23 /* ************************************************************************* */
24 template<typename KEYS>
27 {
28 // Check number of variables
29 if((DenseIndex)Base::keys_.size() != augmentedInformation.nBlocks() - 1)
30 throw std::invalid_argument(
31 "Error in HessianFactor constructor input. Number of provided keys plus\n"
32 "one for the information vector must equal the number of provided matrix blocks. ");
33
34 // Check RHS dimension
35 if(augmentedInformation.getDim(augmentedInformation.nBlocks() - 1) != 1)
36 throw std::invalid_argument(
37 "Error in HessianFactor constructor input. The last provided matrix block\n"
38 "must be the information vector, but the last provided block had more than one column.");
39 }
40
41}
Global functions in a separate testing namespace.
Definition chartTesting.h:28
ptrdiff_t DenseIndex
The index type for Eigen objects.
Definition types.h:106
This class stores a dense matrix and allows it to be accessed as a collection of blocks.
Definition SymmetricBlockMatrix.h:52
const KeyVector & keys() const
Access the factor's involved variable keys.
Definition Factor.h:140
KeyVector keys_
The keys involved in this factor.
Definition Factor.h:85
size_t size() const
Definition Factor.h:157
GaussianFactor()
Default constructor creates empty factor.
Definition GaussianFactor.h:46
Matrix augmentedInformation() const override
Return the augmented information matrix represented by this GaussianFactor.
Definition HessianFactor.cpp:282
SymmetricBlockMatrix info_
The full augmented information matrix, s.t. the quadratic error is 0.5*[x -1]'H[x -1].
Definition HessianFactor.h:104
HessianFactor()
default constructor for I/O
Definition HessianFactor.cpp:77