MRPT  2.0.0
CMatrixB.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: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #pragma once
10 
13 
14 namespace mrpt::math
15 {
16 /** This class is a "CSerializable" wrapper for "CMatrixBool".
17  * \note For a complete introduction to Matrices and vectors in MRPT, see:
18  * https://www.mrpt.org/Matrices_vectors_arrays_and_Linear_Algebra_MRPT_and_Eigen_classes
19  * \ingroup mrpt_math_grp
20  */
22 {
24  public:
25  /** Constructor */
26  CMatrixB(size_t row = 1, size_t col = 1) : CMatrixBool(row, col) {}
27  /** Copy constructor */
28  CMatrixB(const CMatrixBool& m) : CMatrixBool(m) {}
29  /** Assignment operator for float matrixes */
31  {
33  return *this;
34  }
35 }; // end of class definition
36 
37 } // namespace mrpt::math
This base provides a set of functions for maths stuff.
CMatrixB & operator=(const CMatrixBool &m)
Assignment operator for float matrixes.
Definition: CMatrixB.h:30
CMatrixB(size_t row=1, size_t col=1)
Constructor.
Definition: CMatrixB.h:26
CMatrixDynamic & operator=(const CMatrixDynamic< T > &m)=default
CMatrixB(const CMatrixBool &m)
Copy constructor.
Definition: CMatrixB.h:28
The virtual base class which provides a unified interface for all persistent objects in MRPT...
Definition: CSerializable.h:30
This class is a "CSerializable" wrapper for "CMatrixBool".
Definition: CMatrixB.h:21
#define DEFINE_SERIALIZABLE(class_name, NS)
This declaration must be inserted in all CSerializable classes definition, within the class declarati...
This template class provides the basic functionality for a general 2D any-size, resizable container o...



Page generated by Doxygen 1.8.14 for MRPT 2.0.0 Git: b38439d21 Tue Mar 31 19:58:06 2020 +0200 at miƩ abr 1 00:50:30 CEST 2020