mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
310f7aa096
This include: - cwise Pow,Sin,Cos,Exp... - cwise Greater and other comparison operators - .any(), .all() and partial reduction - random
18 lines
351 B
Plaintext
18 lines
351 B
Plaintext
#ifndef EIGEN_ARRAY_MODULE_H
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
#include "src/Array/ArrayBase.h"
|
|
#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
|