Skip to content
Snippets Groups Projects
Commit 474f013c authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

const parameters in tdcp

parent 746520d0
No related branches found
No related tags found
2 merge requests!20new tag,!19new tag
This commit is part of merge request !20. Comments created here will be created in the context of that merge request.
...@@ -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,
......
...@@ -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 de best RAIM solution // Choose the 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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment