MRPT  1.9.9
CMatrixB.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://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  * http://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 }
38 
Declares a matrix of booleans (non serializable).
CMatrixBool & operator=(const CMatrixTemplate< bool > &m)
Assignment operator for float matrixes.
Definition: CMatrixB.cpp:72
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
CMatrixB(const CMatrixBool &m)
Copy constructor.
Definition: CMatrixB.h:28
#define DEFINE_SERIALIZABLE(class_name)
This declaration must be inserted in all CSerializable classes definition, within the class declarati...
GLenum GLenum GLvoid * row
Definition: glext.h:3576
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



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020