mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-29 15:24:51 +08:00

- matrix-scalar addition/subtraction operators, e.g.: m.array() += 0.5; - matrix/matrix comparison operators, e.g.: if (m1.array() < m2.array()) {} * fix compilation issues with Transform and gcc < 4.1
18 lines
347 B
Plaintext
18 lines
347 B
Plaintext
#ifndef EIGEN_ARRAY_MODULE_H
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
#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"
|
|
#include "src/Array/Array.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#endif // EIGEN_ARRAY_MODULE_H
|