1*bf2c3715SXin Li // This file is part of Eigen, a lightweight C++ template library
2*bf2c3715SXin Li // for linear algebra.
3*bf2c3715SXin Li //
4*bf2c3715SXin Li // Copyright (C) 2009 Gael Guennebaud <[email protected]>
5*bf2c3715SXin Li //
6*bf2c3715SXin Li // This Source Code Form is subject to the terms of the Mozilla
7*bf2c3715SXin Li // Public License v. 2.0. If a copy of the MPL was not distributed
8*bf2c3715SXin Li // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9*bf2c3715SXin Li
10*bf2c3715SXin Li #define EIGEN2_SUPPORT
11*bf2c3715SXin Li
12*bf2c3715SXin Li #include "main.h"
13*bf2c3715SXin Li
eigen2support(const MatrixType & m)14*bf2c3715SXin Li template<typename MatrixType> void eigen2support(const MatrixType& m)
15*bf2c3715SXin Li {
16*bf2c3715SXin Li typedef typename MatrixType::Scalar Scalar;
17*bf2c3715SXin Li
18*bf2c3715SXin Li Index rows = m.rows();
19*bf2c3715SXin Li Index cols = m.cols();
20*bf2c3715SXin Li
21*bf2c3715SXin Li MatrixType m1 = MatrixType::Random(rows, cols),
22*bf2c3715SXin Li m3(rows, cols);
23*bf2c3715SXin Li
24*bf2c3715SXin Li Scalar s1 = internal::random<Scalar>(),
25*bf2c3715SXin Li s2 = internal::random<Scalar>();
26*bf2c3715SXin Li
27*bf2c3715SXin Li // scalar addition
28*bf2c3715SXin Li VERIFY_IS_APPROX(m1.cwise() + s1, s1 + m1.cwise());
29*bf2c3715SXin Li VERIFY_IS_APPROX(m1.cwise() + s1, MatrixType::Constant(rows,cols,s1) + m1);
30*bf2c3715SXin Li VERIFY_IS_APPROX((m1*Scalar(2)).cwise() - s2, (m1+m1) - MatrixType::Constant(rows,cols,s2) );
31*bf2c3715SXin Li m3 = m1;
32*bf2c3715SXin Li m3.cwise() += s2;
33*bf2c3715SXin Li VERIFY_IS_APPROX(m3, m1.cwise() + s2);
34*bf2c3715SXin Li m3 = m1;
35*bf2c3715SXin Li m3.cwise() -= s1;
36*bf2c3715SXin Li VERIFY_IS_APPROX(m3, m1.cwise() - s1);
37*bf2c3715SXin Li
38*bf2c3715SXin Li VERIFY_IS_EQUAL((m1.corner(TopLeft,1,1)), (m1.block(0,0,1,1)));
39*bf2c3715SXin Li VERIFY_IS_EQUAL((m1.template corner<1,1>(TopLeft)), (m1.template block<1,1>(0,0)));
40*bf2c3715SXin Li VERIFY_IS_EQUAL((m1.col(0).start(1)), (m1.col(0).segment(0,1)));
41*bf2c3715SXin Li VERIFY_IS_EQUAL((m1.col(0).template start<1>()), (m1.col(0).segment(0,1)));
42*bf2c3715SXin Li VERIFY_IS_EQUAL((m1.col(0).end(1)), (m1.col(0).segment(rows-1,1)));
43*bf2c3715SXin Li VERIFY_IS_EQUAL((m1.col(0).template end<1>()), (m1.col(0).segment(rows-1,1)));
44*bf2c3715SXin Li
45*bf2c3715SXin Li using std::cos;
46*bf2c3715SXin Li using numext::real;
47*bf2c3715SXin Li using numext::abs2;
48*bf2c3715SXin Li VERIFY_IS_EQUAL(ei_cos(s1), cos(s1));
49*bf2c3715SXin Li VERIFY_IS_EQUAL(ei_real(s1), real(s1));
50*bf2c3715SXin Li VERIFY_IS_EQUAL(ei_abs2(s1), abs2(s1));
51*bf2c3715SXin Li
52*bf2c3715SXin Li m1.minor(0,0);
53*bf2c3715SXin Li }
54*bf2c3715SXin Li
EIGEN_DECLARE_TEST(eigen2support)55*bf2c3715SXin Li EIGEN_DECLARE_TEST(eigen2support)
56*bf2c3715SXin Li {
57*bf2c3715SXin Li for(int i = 0; i < g_repeat; i++) {
58*bf2c3715SXin Li CALL_SUBTEST_1( eigen2support(Matrix<double,1,1>()) );
59*bf2c3715SXin Li CALL_SUBTEST_2( eigen2support(MatrixXd(1,1)) );
60*bf2c3715SXin Li CALL_SUBTEST_4( eigen2support(Matrix3f()) );
61*bf2c3715SXin Li CALL_SUBTEST_5( eigen2support(Matrix4d()) );
62*bf2c3715SXin Li CALL_SUBTEST_2( eigen2support(MatrixXf(200,200)) );
63*bf2c3715SXin Li CALL_SUBTEST_6( eigen2support(MatrixXcd(100,100)) );
64*bf2c3715SXin Li }
65*bf2c3715SXin Li }
66