29 #include "gtest/gtest.h"
54 A << 0.2, 1, 0, -0.25;
59 EXPECT_TRUE(SylvesterDiscrete::hasUniqueSolution(
A,
A.transpose()));
62 bool solve_success = SylvesterDiscrete::solve(
A,
A.transpose(), Q,
X);
63 EXPECT_TRUE(solve_success);
65 Eigen::Matrix2d X_sol;
66 X_sol << 4.0939153, -0.5079365, -0.5079365, 2.133333;
74 Eigen::MatrixXd
A(5, 5);
75 A << -2.5, -2.3, -0.95, -0.1689, -0.0095, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0;
77 Eigen::MatrixXd Q(5, 5);
79 Q << 0.17, 0.24, 0.01, 0.08, 0.15, 0.23, 0.05, 0.07, 0.14, 0.16, 0.04, 0.06, 0.13, 0.20, 0.22, 0.10, 0.12, 0.19, 0.21, 0.03, 0.11, 0.18, 0.25,
82 EXPECT_TRUE(SylvesterDiscrete::hasUniqueSolution(
A,
A.transpose()));
85 bool solve_success = SylvesterDiscrete::solve(
A,
A.transpose(), Q,
X);
86 EXPECT_TRUE(solve_success);
88 Eigen::MatrixXd X_sol(5, 5);
89 X_sol << 617.5979, -611.0219, 592.5646, -565.5248, 532.3784, -610.8914, 617.6479, -610.9519, 592.7046, -565.3648, 592.3457, -610.8314, 617.7779,
90 -610.7519, 592.9246, -565.2179, 592.4657, -610.6414, 617.9879, -610.7219, 532.0166, -565.0379, 592.7157, -610.6214, 618.0779;
100 Eigen::MatrixXd
A(5, 5);
101 A << -2.5, -2.3, -0.95, -0.1689, -0.095, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0;
103 Eigen::MatrixXd
B(5, 5);
104 B << -2, -1, -0.5, -0.1, -0.005, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0;
106 Eigen::MatrixXd C = Eigen::MatrixXd::Identity(5, 5);
108 EXPECT_TRUE(SylvesterDiscrete::hasUniqueSolution(
A,
B));
111 bool solve_success = SylvesterDiscrete::solve(
A,
B, C,
X);
112 EXPECT_TRUE(solve_success);
114 Eigen::MatrixXd X_sol(5, 5);
115 X_sol << -2.2113, -2.2861, -0.8279, -0.3092, -0.0113, 2.1365, 2.3835, 0.7965, 0.2098, 0.0111, -1.8896, -1.3400, 0.1415, -0.2026, -0.0107, 2.4391,
116 2.0311, 0.7422, 1.1783, 0.0094, -2.8472, -1.6969, -0.0413, -0.2345, 0.9878;
123 Eigen::MatrixXd
A = Eigen::MatrixXd::Random(4, 4);
124 Eigen::MatrixXd
B = Eigen::MatrixXd::Random(5, 5);
125 Eigen::MatrixXd C = Eigen::MatrixXd::Random(5, 4);
128 EXPECT_DEBUG_DEATH(SylvesterDiscrete::solve(
A,
B, C,
X),
"");
133 Eigen::Matrix3d
A = Eigen::Matrix3d::Identity();
134 Eigen::Matrix3d
B =
A.transpose();
136 EXPECT_FALSE(SylvesterDiscrete::hasUniqueSolution(
A,
B));
141 Eigen::MatrixXd
A = Eigen::MatrixXd::Identity(10, 10);
142 Eigen::MatrixXd
B = Eigen::MatrixXd::Identity(10, 10);
144 EXPECT_FALSE(SylvesterDiscrete::hasUniqueSolution(
A,
B));
149 Eigen::MatrixXd
A = Eigen::MatrixXd::Random(5, 4);
150 Eigen::MatrixXd
B = Eigen::MatrixXd::Random(5, 5);
153 EXPECT_FALSE(SylvesterDiscrete::hasUniqueSolution(
A,
B));
154 EXPECT_FALSE(SylvesterDiscrete::hasUniqueSolution(
B,
A));