2008-06-01 02:11:48 +08:00
|
|
|
#ifndef EIGEN_ARRAY_MODULE_H
|
|
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2008-12-19 04:48:02 +08:00
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
|
2008-06-01 02:11:48 +08:00
|
|
|
namespace Eigen {
|
|
|
|
|
2009-01-26 21:53:43 +08:00
|
|
|
/** \defgroup Array_Module Array module
|
2008-07-22 18:54:42 +08:00
|
|
|
* 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,
|
2008-08-20 21:07:46 +08:00
|
|
|
* - sin, cos, sqrt, pow, exp, log, square, cube, inverse (reciprocal).
|
2008-07-22 18:54:42 +08:00
|
|
|
*
|
|
|
|
* This module also provides various MatrixBase methods, including:
|
2009-02-12 15:55:35 +08:00
|
|
|
* - 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".
|
2008-07-22 18:54:42 +08:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/Array>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2008-06-01 02:11:48 +08:00
|
|
|
#include "src/Array/CwiseOperators.h"
|
|
|
|
#include "src/Array/Functors.h"
|
2009-01-21 00:37:52 +08:00
|
|
|
#include "src/Array/BooleanRedux.h"
|
2008-09-04 01:16:28 +08:00
|
|
|
#include "src/Array/Select.h"
|
2008-06-01 02:11:48 +08:00
|
|
|
#include "src/Array/PartialRedux.h"
|
|
|
|
#include "src/Array/Random.h"
|
2008-11-04 06:47:00 +08:00
|
|
|
#include "src/Array/Norms.h"
|
2009-03-05 18:25:22 +08:00
|
|
|
#include "src/Array/Replicate.h"
|
2009-02-06 17:01:50 +08:00
|
|
|
#include "src/Array/Reverse.h"
|
2008-06-01 02:11:48 +08:00
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
2008-12-19 04:48:02 +08:00
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
|
2008-06-01 02:11:48 +08:00
|
|
|
#endif // EIGEN_ARRAY_MODULE_H
|