miscmatrices.cpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla
  7. // Public License v. 2.0. If a copy of the MPL was not distributed
  8. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. #include "main.h"
  10. template<typename MatrixType> void miscMatrices(const MatrixType& m)
  11. {
  12. /* this test covers the following files:
  13. DiagonalMatrix.h Ones.h
  14. */
  15. typedef typename MatrixType::Scalar Scalar;
  16. typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
  17. Index rows = m.rows();
  18. Index cols = m.cols();
  19. Index r = internal::random<Index>(0, rows-1), r2 = internal::random<Index>(0, rows-1), c = internal::random<Index>(0, cols-1);
  20. VERIFY_IS_APPROX(MatrixType::Ones(rows,cols)(r,c), static_cast<Scalar>(1));
  21. MatrixType m1 = MatrixType::Ones(rows,cols);
  22. VERIFY_IS_APPROX(m1(r,c), static_cast<Scalar>(1));
  23. VectorType v1 = VectorType::Random(rows);
  24. v1[0];
  25. Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
  26. square(v1.asDiagonal());
  27. if(r==r2) VERIFY_IS_APPROX(square(r,r2), v1[r]);
  28. else VERIFY_IS_MUCH_SMALLER_THAN(square(r,r2), static_cast<Scalar>(1));
  29. square = MatrixType::Zero(rows, rows);
  30. square.diagonal() = VectorType::Ones(rows);
  31. VERIFY_IS_APPROX(square, MatrixType::Identity(rows, rows));
  32. }
  33. void test_miscmatrices()
  34. {
  35. for(int i = 0; i < g_repeat; i++) {
  36. CALL_SUBTEST_1( miscMatrices(Matrix<float, 1, 1>()) );
  37. CALL_SUBTEST_2( miscMatrices(Matrix4d()) );
  38. CALL_SUBTEST_3( miscMatrices(MatrixXcf(3, 3)) );
  39. CALL_SUBTEST_4( miscMatrices(MatrixXi(8, 12)) );
  40. CALL_SUBTEST_5( miscMatrices(MatrixXcd(20, 20)) );
  41. }
  42. }