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
Commits
04fe2bd8
Commit
04fe2bd8
authored
5 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Update wolf.h
parent
ac32c2a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!328
WIP: Resolve "Remove wolf::Scalar and use double instead"
Pipeline
#4665
failed
5 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/core/common/wolf.h
+5
-5
5 additions, 5 deletions
include/core/common/wolf.h
with
5 additions
and
5 deletions
include/core/common/wolf.h
+
5
−
5
View file @
04fe2bd8
...
@@ -84,14 +84,14 @@ namespace Eigen // Eigen namespace extension
...
@@ -84,14 +84,14 @@ namespace Eigen // Eigen namespace extension
// 1. Vectors and Matrices
// 1. Vectors and Matrices
typedef
Matrix
<
double
,
1
,
1
,
RowMajor
>
Matrix1d
;
///< 2x2 matrix of real double type
typedef
Matrix
<
double
,
1
,
1
,
RowMajor
>
Matrix1d
;
///< 2x2 matrix of real double type
typedef
Matrix
<
double
,
6
,
6
,
RowMajor
>
Matrix6d
;
///< 6x6 matrix of real double type
typedef
Matrix
<
double
,
6
,
6
,
RowMajor
>
Matrix6d
;
///< 6x6 matrix of real double type
//
typedef Matrix<double, 7, 7, RowMajor> Matrix7d; ///< 7x7 matrix of real double type
typedef
Matrix
<
double
,
7
,
7
,
RowMajor
>
Matrix7d
;
///< 7x7 matrix of real double type
typedef
Matrix
<
double
,
1
,
1
>
Vector1d
;
///< 1-vector of real double type
typedef
Matrix
<
double
,
1
,
1
>
Vector1d
;
///< 1-vector of real double type
//
typedef Matrix<double, 5, 1> Vector5d; ///< 5-vector of real double type
typedef
Matrix
<
double
,
5
,
1
>
Vector5d
;
///< 5-vector of real double type
typedef
Matrix
<
double
,
6
,
1
>
Vector6d
;
///< 6-vector of real double type
typedef
Matrix
<
double
,
6
,
1
>
Vector6d
;
///< 6-vector of real double type
typedef
Matrix
<
double
,
7
,
1
>
Vector7d
;
///< 7-vector of real double type
typedef
Matrix
<
double
,
7
,
1
>
Vector7d
;
///< 7-vector of real double type
//
typedef Matrix<double, 8, 1> Vector8d; ///< 8-vector of real double type
typedef
Matrix
<
double
,
8
,
1
>
Vector8d
;
///< 8-vector of real double type
//
typedef Matrix<double, 9, 1> Vector9d; ///< 9-vector of real double type
typedef
Matrix
<
double
,
9
,
1
>
Vector9d
;
///< 9-vector of real double type
//
typedef Matrix<double, 10, 1> Vector10d; ///< 10-vector of real double type
typedef
Matrix
<
double
,
10
,
1
>
Vector10d
;
///< 10-vector of real double type
// 2. Sparse matrix
// 2. Sparse matrix
typedef
SparseMatrix
<
double
,
RowMajor
,
int
>
SparseMatrixd
;
typedef
SparseMatrix
<
double
,
RowMajor
,
int
>
SparseMatrixd
;
...
...
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