Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gnss_utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
labrobotica
algorithms
gnss_utils
Commits
474f013c
Commit
474f013c
authored
4 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
const parameters in tdcp
parent
746520d0
No related branches found
No related tags found
2 merge requests
!20
new tag
,
!19
new tag
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/gnss_utils/tdcp.h
+3
-3
3 additions, 3 deletions
include/gnss_utils/tdcp.h
src/tdcp.cpp
+4
-4
4 additions, 4 deletions
src/tdcp.cpp
with
7 additions
and
7 deletions
include/gnss_utils/tdcp.h
+
3
−
3
View file @
474f013c
...
@@ -66,9 +66,9 @@ TdcpOutput Tdcp(SnapshotPtr snapshot_r,
...
@@ -66,9 +66,9 @@ TdcpOutput Tdcp(SnapshotPtr snapshot_r,
TdcpOutput
Tdcp
(
const
Eigen
::
Vector3d
&
x_r
,
TdcpOutput
Tdcp
(
const
Eigen
::
Vector3d
&
x_r
,
Eigen
::
MatrixXd
&
A
,
Eigen
::
MatrixXd
&
A
,
Eigen
::
VectorXd
&
r
,
Eigen
::
VectorXd
&
r
,
Eigen
::
VectorXd
&
drho_m
,
const
Eigen
::
VectorXd
&
drho_m
,
Eigen
::
MatrixXd
&
s_k
,
const
Eigen
::
MatrixXd
&
s_k
,
Eigen
::
MatrixXd
&
s_r
,
const
Eigen
::
MatrixXd
&
s_r
,
const
Eigen
::
Vector4d
&
d_0
,
const
Eigen
::
Vector4d
&
d_0
,
const
double
&
var_tdcp
,
const
double
&
var_tdcp
,
std
::
set
<
int
>&
raim_discarded_rows
,
std
::
set
<
int
>&
raim_discarded_rows
,
...
...
This diff is collapsed.
Click to expand it.
src/tdcp.cpp
+
4
−
4
View file @
474f013c
...
@@ -307,9 +307,9 @@ TdcpOutput Tdcp(SnapshotPtr snapshot_r,
...
@@ -307,9 +307,9 @@ TdcpOutput Tdcp(SnapshotPtr snapshot_r,
TdcpOutput
Tdcp
(
const
Eigen
::
Vector3d
&
x_r
,
TdcpOutput
Tdcp
(
const
Eigen
::
Vector3d
&
x_r
,
Eigen
::
MatrixXd
&
A
,
Eigen
::
MatrixXd
&
A
,
Eigen
::
VectorXd
&
r
,
Eigen
::
VectorXd
&
r
,
Eigen
::
VectorXd
&
drho_m
,
const
Eigen
::
VectorXd
&
drho_m
,
Eigen
::
MatrixXd
&
s_k
,
const
Eigen
::
MatrixXd
&
s_k
,
Eigen
::
MatrixXd
&
s_r
,
const
Eigen
::
MatrixXd
&
s_r
,
const
Eigen
::
Vector4d
&
d_0
,
const
Eigen
::
Vector4d
&
d_0
,
const
double
&
var_tdcp
,
const
double
&
var_tdcp
,
std
::
set
<
int
>&
raim_discarded_rows
,
std
::
set
<
int
>&
raim_discarded_rows
,
...
@@ -551,7 +551,7 @@ TdcpOutput Tdcp(const Eigen::Vector3d& x_r,
...
@@ -551,7 +551,7 @@ TdcpOutput Tdcp(const Eigen::Vector3d& x_r,
A
.
row
(
worst_sat_row
)
=
Eigen
::
Vector4d
::
Zero
().
transpose
();
A
.
row
(
worst_sat_row
)
=
Eigen
::
Vector4d
::
Zero
().
transpose
();
r
(
worst_sat_row
)
=
0
;
r
(
worst_sat_row
)
=
0
;
// Choose
d
e best RAIM solution
// Choose
th
e best RAIM solution
d
=
best_d
;
d
=
best_d
;
cov_d
=
(
A
.
transpose
()
*
A
).
inverse
();
cov_d
=
(
A
.
transpose
()
*
A
).
inverse
();
residual
=
best_residual
;
residual
=
best_residual
;
...
...
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