Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!343
WIP: Resolve "Complete state vector new data structure?"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Resolve "Complete state vector new data structure?"
287-complete-state-vector-new-data-structure
into
devel
Overview
1
Commits
37
Pipelines
23
Changes
6
Closed
Joan Solà Ortega
requested to merge
287-complete-state-vector-new-data-structure
into
devel
5 years ago
Overview
1
Commits
37
Pipelines
23
Changes
6
Expand
Closes
#287 (closed)
Continues in
!358 (closed)
Edited
5 years ago
by
Joan Solà Ortega
0
0
Merge request reports
Viewing commit
3b092975
Prev
Next
Show latest version
6 files
+
107
−
30
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
3b092975
New methods plus() for state blocks and other
· 3b092975
Joan Solà Ortega
authored
5 years ago
include/core/state_block/local_parametrization_base.h
+
7
−
5
Options
@@ -12,8 +12,6 @@
namespace
wolf
{
//WOLF_PTR_TYPEDEFS(LocalParametrizationBase);
class
LocalParametrizationBase
{
protected:
unsigned
int
global_size_
;
@@ -22,13 +20,17 @@ class LocalParametrizationBase{
LocalParametrizationBase
(
unsigned
int
_global_size
,
unsigned
int
_local_size
);
virtual
~
LocalParametrizationBase
();
bool
plus
(
const
Eigen
::
VectorXd
&
_x
,
const
Eigen
::
VectorXd
&
_delta
,
Eigen
::
VectorXd
&
_x_plus_delta
)
const
;
virtual
bool
plus
(
Eigen
::
Map
<
const
Eigen
::
VectorXd
>&
_x
,
Eigen
::
Map
<
const
Eigen
::
VectorXd
>&
_delta
,
Eigen
::
Map
<
Eigen
::
VectorXd
>&
_x_plus_delta
)
const
=
0
;
virtual
bool
computeJacobian
(
Eigen
::
Map
<
const
Eigen
::
VectorXd
>&
_x
,
Eigen
::
Map
<
Eigen
::
MatrixRowXd
>&
_jacobian
)
const
=
0
;
Eigen
::
Map
<
Eigen
::
VectorXd
>&
_x_plus_delta
)
const
=
0
;
virtual
bool
computeJacobian
(
Eigen
::
Map
<
const
Eigen
::
VectorXd
>&
_x
,
Eigen
::
Map
<
Eigen
::
MatrixRowXd
>&
_jacobian
)
const
=
0
;
virtual
bool
minus
(
Eigen
::
Map
<
const
Eigen
::
VectorXd
>&
_x1
,
Eigen
::
Map
<
const
Eigen
::
VectorXd
>&
_x2
,
Eigen
::
Map
<
Eigen
::
VectorXd
>&
_x2_minus_x1
)
=
0
;
Eigen
::
Map
<
Eigen
::
VectorXd
>&
_x2_minus_x1
)
=
0
;
unsigned
int
getLocalSize
()
const
;
unsigned
int
getGlobalSize
()
const
;
Loading