aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Array
blob: 276fdec2f707c50552fc6dd912db516400f0dcef (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef EIGEN_ARRAY_MODULE_H
#define EIGEN_ARRAY_MODULE_H

#include "Core"

#include "src/Core/util/DisableMSVCWarnings.h"

namespace Eigen {

/** \defgroup Array_Module 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:
  *  - boolean reductions: \ref MatrixBase::all() "all", \ref MatrixBase::any() "any", \ref MatrixBase::count() "count",
  *  - \ref MatrixBase::Random() "random matrix initialization",
  *  - a \ref MatrixBase::select() "select" function mimicking the trivariate ?: operator,
  *  - \ref MatrixBase::colwise() "column-wise" and \ref MatrixBase::rowwise() "row-wise" reductions,
  *  - \ref MatrixBase::reverse() "matrix reverse",
  *  - \ref MatrixBase::lpNorm() "generic matrix norm".
  *
  * \code
  * #include <Eigen/Array>
  * \endcode
  */

#include "src/Array/Functors.h"
#include "src/Array/BooleanRedux.h"
#include "src/Array/Select.h"
#include "src/Array/VectorwiseOp.h"
#include "src/Array/Random.h"
#include "src/Array/Norms.h"
#include "src/Array/Replicate.h"
#include "src/Array/Reverse.h"
#include "src/Array/ArrayBase.h"
#include "src/Array/ArrayWrapper.h"
#include "src/Array/Array.h"

} // namespace Eigen

#include "src/Core/util/EnableMSVCWarnings.h"

#endif // EIGEN_ARRAY_MODULE_H