aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Array
blob: 74d8fa8882ca6163f8cf4ec3e288d86ccd8cf13d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef EIGEN_ARRAY_MODULE_H
#define EIGEN_ARRAY_MODULE_H

#include "Core"

namespace Eigen {

/** \defgroup Array Array module
  * This module provides several handy features to manipulate matrices as simple array of values.
  * In addition to listed classes, it defines various methods of the Cwise interface
  * (accessible from MatrixBase::cwise()), including:
  *  - matrix-scalar sum,
  *  - coeff-wise comparison operators,
  *  - sin, cos, sqrt, pow, exp, log, square, cube, inverse (reciprocal).
  *
  * This module also provides various MatrixBase methods, including:
  *  - \ref MatrixBase::all() "all", \ref MatrixBase::any() "any",
  *  - \ref MatrixBase::Random() "random matrix initialization"
  *
  * \code
  * #include <Eigen/Array>
  * \endcode
  */

#include "src/Array/CwiseOperators.h"
#include "src/Array/Functors.h"
#include "src/Array/AllAndAny.h"
#include "src/Array/PartialRedux.h"
#include "src/Array/Random.h"

} // namespace Eigen

#endif // EIGEN_ARRAY_MODULE_H