MRPT  2.0.1
lib_mrpt_math_matrices.h
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 details in https://www.mrpt.org/License |
8  +---------------------------------------------------------------------------+
9  */
10 
11 // clang-format off
12 
13 /** \defgroup mrpt_math_vectors_matrices_grp Vectors, matrices, linear Algebra
14 \ingroup mrpt_math_grp
15 
16 Dynamic and fixed-size vectors and matrices, basic linear Algebra
17 
18 [TOC]
19 
20 # Design rationale
21 
22 Unlike in older MRPT 1.x versions, matrices and vectors since MRPT v2.0.0 **do
23 no longer inherit** from Eigen classes. Instead, they are now thin wrappers
24 around static/dynamic memory containers, which *can* be casted to
25 Eigen-compatible classes, but which allow most common operations to be done
26 without Eigen.
27 
28 The reason for this scheme is two-fold:
29  - Including Eigen in *all* headers significantly slows down build times.
30  - Backwards-compatible MRPT code required using Eigen's plugin mechanism to
31 inject code inside Eigen::DenseBase. This was a source of problems when using
32 MRPT in an application that uses Eigen on its own, since an error would be
33 raised in MRPT math headers were not always included first.
34 
35 # Important facts
36 
37  - Fixed-size containers should be preferred where possible, since they
38  allow more compile-time optimizations and avoid dynamic memory
39 (de)allocations.
40 
41  - Most common uses of vectors and matrices require `#include`-ing just the
42 corresponding MRPT headers.
43 
44  - If some particular feature is not exposed in the MRPT API, then you can map
45 the MRPT container into an Eigen Map and use the regular Eigen API.
46 
47  - For fixed-sized matrices and vectors, only a subset of all infinite possible
48 sizes are explicitly instantiated in the mrpt-math library. This means that if
49 you use a non-supported size, you will not have any build error but your program
50 will fail to link. The alternative then is to either use `.asEigen()` or casting
51 to a dynamic-sized container.
52 
53  - Exact list of explicitly-instantiated vectors:
54  - mrpt::math::CVectorDynamic<T>: For `T`=`float` and `T`=`double`. Any dynamic size.
55  - mrpt::math::CVectorFixed<T,N>: For `T`=`float` and `T`=`double`, and `N`=2,3,4,5,6,7,12.
56 
57  - Exact list of explicitly-instantiated matrices:
58  - mrpt::math::CMatrixDynamic<T>: For `T`=`float` and `T`=`double`. Any dynamic size.
59  - mrpt::math::CMatrixFixed<T,N,N>: For `T`=`float` and `T`=`double`, and `N`=2,3,4,6,7.
60 
61  - All matrices and vectors support build-time generation of constexpr strings
62 describing their types, via: \ref mrpt_typemeta_grp
63 
64  - For binary serialization of dynamic-sized matrices, the following classes are
65 provided which implements the CSerializable interface (see: \ref
66 mrpt_serialization_grp):
67  - mrpt::math::CMatrixF (float, NxM).
68  - mrpt::math::CMatrixD (double, NxM).
69 
70 ## Example: matrix sum (MRPT methods, no explicit call to Eigen)
71 
72 ```
73 #include <mrpt/math/CMatrixDynamic.h>
74 #include <iostream>
75 // ...
76 mrpt::math::CMatrixDouble M1;
77 M1.setDiagonal(4,0.1);
78 //M1.loadFromTextFile("M1.txt");
79 
80 auto M2 = mrpt::math::CMatrixDouble::Identity(4);
81 
82 // Sum:
83 mrpt::math::CMatrixDouble R = M1 + M2;
84 std::cout << "R:\n" << R << "\n";
85 R.saveToTextFile("R.txt");
86 ```
87 
88 ## Example: QR-based linear system solving (With explicit call to Eigen)
89 
90 ```
91 #include <mrpt/math/CMatrixDynamic.h>
92 #include <Eigen/Dense> // Must add this one to use .asEigen()
93 #include <iostream>
94 // ...
95 mrpt::math::CMatrixDouble33 A;
96 A.setDiagonal(3,0.2);
97 
98 mrpt::math::CVectorDouble<3> b;
99 b.fill(0.1);;
100 
101 mrpt::math::CVectorDouble<3> x;
102 
103 // Solve Ax=b
104 x.asEigen() = A.asEigen().fullPivHouseholderQr().solve(x);
105 
106 std::cout << "x:\n" << x.asString() << "\n";
107 ```
108 
109 See list of classes below.
110 
111 
112 */



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