31 #include <Eigen/Eigenvalues>
33 #include "gtest/gtest.h"
59 Eigen::MatrixXd square_mat = Eigen::MatrixXd::Random(15, 15);
62 Eigen::MatrixXd non_square_mat = Eigen::MatrixXd::Random(16, 15);
65 Eigen::VectorXd vector = Eigen::VectorXd::Random(10);
71 Eigen::MatrixXd mat1 = Eigen::MatrixXd::Random(15, 15);
72 Eigen::MatrixXd mat2 = Eigen::MatrixXd::Random(14, 15);
73 Eigen::VectorXd vec1 = Eigen::VectorXd::Random(15);
74 Eigen::VectorXd vec2 = Eigen::VectorXd::Random(14);
93 Eigen::MatrixXd mat1 = Eigen::MatrixXd::Random(15, 15);
94 Eigen::MatrixXd mat2 = Eigen::MatrixXd::Random(14, 15);
95 Eigen::VectorXd vec1 = Eigen::VectorXd::Random(15);
96 Eigen::VectorXd vec2 = Eigen::VectorXd::Random(14);
99 EXPECT_FALSE(
have_equal_size(mat1, mat1, mat1, mat2, mat1, mat1, mat1));
100 EXPECT_FALSE(
have_equal_size(mat1, mat1, mat1, mat1, vec1, mat1, mat1));
101 EXPECT_FALSE(
have_equal_size(mat1, mat1, mat1, mat1, mat1, vec2, mat1));
120 Eigen::MatrixXd identity = Eigen::MatrixXd::Identity(15, 15);
123 Eigen::MatrixXd zeros = Eigen::MatrixXd::Zero(30, 30);
126 Eigen::MatrixXd pos_semidef = Eigen::MatrixXd::Ones(15, 15);
129 Eigen::MatrixXd non_square_mat = Eigen::MatrixXd::Random(12, 14);
132 Eigen::VectorXd vector = Eigen::VectorXd::Random(10);
135 Eigen::Matrix3d pos_def_1;
136 pos_def_1 << 2, -1, 0, -1, 2, -1, 0, -1, 2;
139 Eigen::Matrix2d pos_def_2;
140 pos_def_2 << 1, 2, 2, 100;
143 Eigen::Matrix2d pos_def_3;
144 pos_def_3 << 1, -1, -1, 4;
147 Eigen::Matrix4d pos_def_4;
148 pos_def_4 << 9, 3, -6, 12, 3, 26, -7, -11, -6, -7, 9, 7, 12, -11, 7, 65;
151 Eigen::Matrix4d neg_def_1;
152 neg_def_1 << 9, 3, -6, 12, 3, 26, -7, -11, -6, -7, 9, 7, 12, -11, 7, 60;
155 Eigen::Matrix2d neg_def_2;
156 neg_def_2 << 1, 4, 4, 1;
159 Eigen::Matrix3d pos_def_diag = Eigen::Vector3d(1, 3, 2).asDiagonal();
162 Eigen::Matrix3d neg_def_diag = Eigen::Vector3d(1, 3, -2).asDiagonal();