Main MRPT website > C++ reference for 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
15 {
16 namespace math
17 {
18 /** This class is a "CSerializable" wrapper for "CMatrixBool".
19  * \note For a complete introduction to Matrices and vectors in MRPT, see:
20  * http://www.mrpt.org/Matrices_vectors_arrays_and_Linear_Algebra_MRPT_and_Eigen_classes
21  * \ingroup mrpt_math_grp
22  */
24 {
26  public:
27  /** Constructor */
28  CMatrixB(size_t row = 1, size_t col = 1) : CMatrixBool(row, col) {}
29  /** Copy constructor */
30  CMatrixB(const CMatrixBool& m) : CMatrixBool(m) {}
31  /** Assignment operator for float matrixes */
33  {
35  return *this;
36  }
37 }; // end of class definition
38 
39 } // End of namespace
40 } // End of namespace
mrpt::math::CMatrixBool::operator=
CMatrixBool & operator=(const CMatrixTemplate< bool > &m)
Assignment operator for float matrixes.
Definition: CMatrixB.cpp:72
mrpt::math::CMatrixBool
Declares a matrix of booleans (non serializable).
Definition: CMatrixTemplate.h:696
mrpt
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Definition: CKalmanFilterCapable.h:30
mrpt::math::CMatrixB
This class is a "CSerializable" wrapper for "CMatrixBool".
Definition: CMatrixB.h:23
mrpt::serialization::CSerializable
The virtual base class which provides a unified interface for all persistent objects in MRPT.
Definition: CSerializable.h:32
mrpt::math::CMatrixB::CMatrixB
CMatrixB(const CMatrixBool &m)
Copy constructor.
Definition: CMatrixB.h:30
mrpt::math::CMatrixB::operator=
CMatrixB & operator=(const CMatrixBool &m)
Assignment operator for float matrixes.
Definition: CMatrixB.h:32
row
GLenum GLenum GLvoid * row
Definition: glext.h:3576
mrpt::math::CMatrixB::CMatrixB
CMatrixB(size_t row=1, size_t col=1)
Constructor.
Definition: CMatrixB.h:28
DEFINE_SERIALIZABLE
#define DEFINE_SERIALIZABLE(class_name)
This declaration must be inserted in all CSerializable classes definition, within the class declarati...
Definition: CSerializable.h:102
CMatrixTemplate.h
CSerializable.h



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST