Skip to content
Snippets Groups Projects
Commit 9fc9559b authored by Wilson Jallet's avatar Wilson Jallet :clapper:
Browse files

unittest: use the right linspaced range

parent 0c2c3471
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ Eigen::Ref<MatType> editBlock(Eigen::Ref<MatType> mat, Eigen::DenseIndex i, ...@@ -43,7 +43,7 @@ Eigen::Ref<MatType> editBlock(Eigen::Ref<MatType> mat, Eigen::DenseIndex i,
Eigen::DenseIndex m) { Eigen::DenseIndex m) {
auto B = mat.block(i, j, n, m); auto B = mat.block(i, j, n, m);
Eigen::Map<VectorXd> view(B.data(), B.size()); Eigen::Map<VectorXd> view(B.data(), B.size());
view.setLinSpaced(1., (double)view.size()); view.setLinSpaced(0., (double)view.size() - 1.);
return mat; return mat;
} }
......
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