Fix Vector_() to Vec() in gtsam/navigation
parent
40a7153272
commit
dd3a98464a
|
|
@ -25,8 +25,8 @@ using namespace gtsam;
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
TEST( ImuBias, Constructor)
|
TEST( ImuBias, Constructor)
|
||||||
{
|
{
|
||||||
Vector bias_acc(Vector_(3,0.1,0.2,0.4));
|
Vector bias_acc((Vec(3) << 0.1,0.2,0.4));
|
||||||
Vector bias_gyro(Vector_(3, -0.2, 0.5, 0.03));
|
Vector bias_gyro((Vec(3) << -0.2, 0.5, 0.03));
|
||||||
|
|
||||||
// Default Constructor
|
// Default Constructor
|
||||||
gtsam::imuBias::ConstantBias bias1;
|
gtsam::imuBias::ConstantBias bias1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue