Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
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
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
1f514b7a
Commit
1f514b7a
authored
6 years ago
by
Armar6
Browse files
Options
Downloads
Patches
Plain Diff
added eigenhelpers
parent
ee8c7db3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/libraries/core/EigenHelpers.h
+117
-0
117 additions, 0 deletions
source/RobotAPI/libraries/core/EigenHelpers.h
with
117 additions
and
0 deletions
source/RobotAPI/libraries/core/EigenHelpers.h
0 → 100644
+
117
−
0
View file @
1f514b7a
/*
* This file is part of ArmarX.
*
* Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T),
* Karlsruhe Institute of Technology (KIT), all rights reserved.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Simon Ottenhaus (simon dot ottenhaus at kit dot edu)
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include
<eigen3/Eigen/Core>
namespace
armarx
{
template
<
class
ScalarType
>
inline
Eigen
::
Matrix
<
ScalarType
,
Eigen
::
Dynamic
,
1
>
MakeVectorX
(
std
::
initializer_list
<
ScalarType
>
ilist
)
{
Eigen
::
Matrix
<
ScalarType
,
Eigen
::
Dynamic
,
1
>
r
(
ilist
.
size
());
std
::
size_t
i
=
0
;
for
(
const
auto
e
:
ilist
)
{
r
(
i
++
)
=
e
;
}
return
r
;
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
std
::
initializer_list
<
float
>
ilist
)
{
return
MakeVectorX
<
float
>
(
ilist
);
}
template
<
class
ScalarType
,
class
...
Ts
>
inline
Eigen
::
Matrix
<
ScalarType
,
Eigen
::
Dynamic
,
1
>
MakeVectorXWarnNarrowing
(
Ts
&&
...
ts
)
{
return
MakeVectorX
<
ScalarType
>
(
std
::
initializer_list
<
ScalarType
>
{
std
::
forward
<
Ts
>
(
ts
)...});
}
template
<
class
ScalarType
,
class
...
Ts
>
inline
Eigen
::
Matrix
<
ScalarType
,
Eigen
::
Dynamic
,
1
>
MakeVectorXIgnoreNarrowing
(
Ts
&&
...
ts
)
{
return
MakeVectorX
<
ScalarType
>
(
std
::
initializer_list
<
ScalarType
>
{
static_cast
<
ScalarType
>
(
std
::
forward
<
Ts
>
(
ts
))...});
}
template
<
class
ScalarType
,
class
...
Ts
>
inline
Eigen
::
Matrix
<
ScalarType
,
Eigen
::
Dynamic
,
1
>
MakeVectorX
(
Ts
&&
...
ts
)
{
return
MakeVectorX
<
ScalarType
>
(
std
::
initializer_list
<
ScalarType
>
{
static_cast
<
ScalarType
>
(
std
::
forward
<
Ts
>
(
ts
))...});
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
std
::
vector
<
float
>
vec
)
{
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
r
(
vec
.
size
());
std
::
size_t
i
=
0
;
for
(
const
auto
e
:
vec
)
{
r
(
i
++
)
=
e
;
}
return
r
;
}
/* Qt-Creator does not support variable amount of parameters. The following methods are only for Qt-Creator. */
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
)
{
return
MakeVectorX
<
float
>
(
f1
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
,
float
f4
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
,
f4
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
,
float
f4
,
float
f5
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
,
f4
,
f5
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
,
float
f4
,
float
f5
,
float
f6
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
,
f4
,
f5
,
f6
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
,
float
f4
,
float
f5
,
float
f6
,
float
f7
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
,
f4
,
f5
,
f6
,
f7
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
,
float
f4
,
float
f5
,
float
f6
,
float
f7
,
float
f8
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
,
f4
,
f5
,
f6
,
f7
,
f8
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
,
float
f4
,
float
f5
,
float
f6
,
float
f7
,
float
f8
,
float
f9
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
,
f4
,
f5
,
f6
,
f7
,
f8
,
f9
);
}
inline
Eigen
::
Matrix
<
float
,
Eigen
::
Dynamic
,
1
>
MakeVectorXf
(
float
f1
,
float
f2
,
float
f3
,
float
f4
,
float
f5
,
float
f6
,
float
f7
,
float
f8
,
float
f9
,
float
f10
)
{
return
MakeVectorX
<
float
>
(
f1
,
f2
,
f3
,
f4
,
f5
,
f6
,
f7
,
f8
,
f9
,
f10
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment