Added function to return the augmented information matrix
parent
f07d846954
commit
57ae0aac38
|
|
@ -210,6 +210,9 @@ namespace gtsam {
|
||||||
*/
|
*/
|
||||||
constBlock info(const_iterator j1, const_iterator j2) const { return info_(j1-begin(), j2-begin()); }
|
constBlock info(const_iterator j1, const_iterator j2) const { return info_(j1-begin(), j2-begin()); }
|
||||||
|
|
||||||
|
/** Return the full *augmented* information matrix, as described above */
|
||||||
|
constBlock info() const { return info_.full(); }
|
||||||
|
|
||||||
/** Return the constant term \f$ f \f$ as described above
|
/** Return the constant term \f$ f \f$ as described above
|
||||||
* @return The constant term \f$ f \f$
|
* @return The constant term \f$ f \f$
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue