MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/gui.h>
11 #include <mrpt/math/CMatrixF.h>
12 #include <mrpt/math/CMatrixFixed.h>
13 #include <mrpt/math/ops_matrices.h>
14 #include <mrpt/math/ops_vectors.h>
15 #include <mrpt/math/utils.h>
16 #include <mrpt/system/CTicTac.h>
17 #include <Eigen/Dense>
18 #include <iostream>
19 
20 using namespace mrpt;
21 using namespace mrpt::math;
22 using namespace mrpt::system;
23 using namespace std;
24 
25 #include <mrpt/examples_config.h>
26 string myDataDir(MRPT_EXAMPLES_BASE_DIRECTORY + string("math_matrix_example/"));
27 
28 // ------------------------------------------------------
29 // TestChol
30 // ------------------------------------------------------
31 void TestChol()
32 {
33  CMatrixFloat A, B;
34  A.loadFromTextFile(myDataDir + string("in_for_cholesky.txt"));
35  A.chol(B);
36 
37  cout << "Cholesky decomposition result:" << endl << B;
38 }
39 
40 void TestInitMatrix()
41 {
42  // Initialize a matrix from a C array:
43  const double numbers[] = {1, 2, 3, 4, 5, 6};
44  CMatrixDouble M(2, 3, numbers);
45  cout << "Initialized matrix (I): " << endl << M << endl;
46 
47  const double numbers2[] = {0.5, 4.5, 6.7, 8.9, 15.2};
48  CVectorDouble v1;
49  loadVector(v1, numbers2);
50  cout << "Initialized double vector: " << v1 << endl;
51 
52  std::vector<int> v2;
53  loadVector(v2, numbers2);
54  cout << "Initialized int vector: " << v2 << endl;
55 
56  /* // I/O Test
57  CMatrixD B(M);
58  CFileOutputStream("mat.bin") << B;
59  CMatrixD A;
60  CFileInputStream("mat.bin") >> A;
61  cout << "B:" << endl << B;
62  cout << "A:" << endl << A;
63  */
64 }
65 
66 void TestHCH()
67 {
68  CMatrixFloat H, C, RES;
69 
70  cout << "reading H.txt...";
71  H.loadFromTextFile(myDataDir + string("H.txt"));
72  cout << "ok" << endl;
73 
74  cout << "reading C.txt...";
75  C.loadFromTextFile(myDataDir + string("C.txt"));
76  cout << "ok" << endl;
77 
78  // RES = H * C * H'
79  mrpt::math::multiply_HCHt(H, C, RES);
80  cout << "Saving RES.txt ...";
81  RES.saveToTextFile("RES.txt");
82  cout << "ok" << endl;
83 
84  // The same for a column vector:
85  H.loadFromTextFile(myDataDir + string("H_col.txt"));
86  cout << "H*C*(H') = " << mrpt::math::multiply_HCHt_scalar(H, C) << endl;
87  cout << "Should be= 31.434 " << endl;
88 
89  // The same for a row vector:
90  H.loadFromTextFile(myDataDir + string("H_row.txt"));
91  cout << "Loaded H: " << endl << H;
92  cout << "H*C*(H') = " << mrpt::math::multiply_HCHt_scalar(H, C) << endl;
93  cout << "Should be= 31.434" << endl;
94 }
95 
96 void TestMatrixTemplate()
97 {
98  CTicTac tictac;
99  CMatrixDouble M;
100 
101  // --------------------------------------
102  M.loadFromTextFile(myDataDir + string("matrixA.txt"));
103  cout << M << "\n";
104 
105  CMatrixDouble eigenVectors;
106  std::vector<double> eigenValues;
107  M.eig(eigenVectors, eigenValues);
108  cout << "eigenVectors:\n"
109  << eigenVectors << "\n Eigenvalues:\n"
110  << eigenValues;
111 
112  CMatrixDouble D;
113  D.setDiagonal(eigenValues);
114 
115  CMatrixDouble RES;
116  RES = M.asEigen() * D.asEigen() * M.transpose();
117  cout << "RES:\n" << RES;
118 }
119 
120 void TestMatrices()
121 {
122  CMatrixFloat m, l;
123  CTicTac tictac;
124  double t;
125 
126  m.setSize(4, 4);
127  m(0, 0) = 4;
128  m(0, 1) = -2;
129  m(0, 2) = -1;
130  m(0, 3) = 0;
131  m(1, 0) = -2;
132  m(1, 1) = 4;
133  m(1, 2) = 0;
134  m(1, 3) = -1;
135  m(2, 0) = -1;
136  m(2, 1) = 0;
137  m(2, 2) = 4;
138  m(2, 3) = -2;
139  m(3, 0) = 0;
140  m(3, 1) = -1;
141  m(3, 2) = -2;
142  m(3, 3) = 4;
143 
144  cout << "Matrix:\n" << m << endl;
145 
146  // I/O test through a text file:
147  m.saveToTextFile("matrix1.txt");
148  tictac.Tic();
149  l.loadFromTextFile(myDataDir + string("matrix1.txt"));
150  t = tictac.Tac();
151  cout << "Read (text file) in " << 1e6 * t << "us:\n" << l << endl;
152  mrpt::math::laplacian(m, l);
153 
154  cout << "Laplacian:\n" << l << endl;
155 }
156 
157 void TestCov()
158 {
159  // Initialize a matrix from a C array:
160  const double numbers[] = {1, 2, 3, 10, 4, 5, 6, 14, 10, -5, -3, 1};
161  CMatrixDouble Mdyn(4, 3, numbers);
162  CMatrixFixed<double, 4, 3> Mfix(numbers);
163 
164  vector<CVectorDouble> samples(4);
165  for (size_t i = 0; i < 4; i++)
166  {
167  samples[i].resize(3);
168  for (size_t j = 0; j < 3; j++) samples[i][j] = Mdyn(i, j);
169  }
170 
171  cout << "COV (vector of vectors): " << endl
172  << mrpt::math::covVector<vector<CVectorDouble>, Eigen::MatrixXd>(
173  samples)
174  << endl;
175  cout << "COV (mat fix): " << endl << mrpt::math::cov(Mfix) << endl;
176  cout << "COV (mat dyn): " << endl << mrpt::math::cov(Mdyn) << endl;
177 }
178 
179 // ------------------------------------------------------
180 // MAIN
181 // ------------------------------------------------------
182 int main()
183 {
184  try
185  {
186  TestInitMatrix();
188  TestMatrices();
189  TestHCH();
190  TestChol();
191  TestCov();
192 
193  return 0;
194  }
195  catch (exception& e)
196  {
197  cout << "MRPT exception caught: " << e.what() << endl;
198  return -1;
199  }
200  catch (...)
201  {
202  printf("Untyped exception!!");
203  return -1;
204  }
205 }
bool eig(Derived &eVecs, std::vector< Scalar > &eVals, bool sorted=true) const
Computes the eigenvectors and eigenvalues for a square, general matrix.
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
A compile-time fixed-size numeric matrix container.
Definition: CMatrixFixed.h:33
void laplacian(const MATIN &g, MATOUT &ret)
Computes the Laplacian of a square graph weight matrix.
Definition: ops_matrices.h:207
A high-performance stopwatch, with typical resolution of nanoseconds.
std::string myDataDir
This file implements miscelaneous matrix and matrix/vector operations, and internal functions in mrpt...
MAT_C::Scalar multiply_HCHt_scalar(const VECTOR_H &H, const MAT_C &C)
r (scalar) = H*C*H^t (H: row vector, C: symmetric matrix)
Definition: ops_matrices.h:63
STL namespace.
void TestMatrices()
void saveToTextFile(const std::string &file, mrpt::math::TMatrixTextFileFormat fileFormat=mrpt::math::MATRIX_FORMAT_ENG, bool appendMRPTHeader=false, const std::string &userHeader=std::string()) const
Saves the vector/matrix to a file compatible with MATLAB/Octave text format.
This base provides a set of functions for maths stuff.
bool loadVector(std::istream &f, std::vector< int > &d)
Loads one row of a text file as a numerical std::vector.
CMatrixDouble cov(const MATRIX &v)
Computes the covariance matrix from a list of samples in an NxM matrix, where each row is a sample...
Definition: ops_matrices.h:149
void TestInitMatrix()
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
void setSize(size_t row, size_t col, bool zeroNewElements=false)
Changes the size of matrix, maintaining the previous contents.
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
EIGEN_MAP asEigen()
Get as an Eigen-compatible Eigen::Map object.
This template class provides the basic functionality for a general 2D any-size, resizable container o...
void setDiagonal(const std::size_t N, const Scalar value)
Resize to NxN, set all entries to zero, except the main diagonal which is set to value ...
Definition: MatrixBase.h:34
void TestMatrixTemplate()
void multiply_HCHt(const MAT_H &H, const MAT_C &C, MAT_R &R, bool accumResultInOutput=false)
R = H * C * H^t.
Definition: ops_matrices.h:28
void loadFromTextFile(std::istream &f)
Loads a vector/matrix from a text file, compatible with MATLAB text format.



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020