mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
- expand MathFunctions.h to provide more functions, like exp, log...
- add cwiseExp(), cwiseLog()...
--> for example, doing a gamma-correction on a bitmap image stored as
an array of floats is a simple matter of:
Eigen::Map<VectorXf> m = VectorXf::map(bitmap,size);
m = m.cwisePow(gamma);
- apidoc improvements, reorganization of the \name's
- remove obsolete examples
- remove EIGEN_ALWAYS_INLINE on lazyProduct(), it seems useless.
This commit is contained in:
@@ -53,6 +53,13 @@ struct ei_scalar_quotient_op;
|
||||
struct ei_scalar_opposite_op;
|
||||
struct ei_scalar_conjugate_op;
|
||||
struct ei_scalar_abs_op;
|
||||
struct ei_scalar_abs2_op;
|
||||
struct ei_scalar_sqrt_op;
|
||||
struct ei_scalar_exp_op;
|
||||
struct ei_scalar_log_op;
|
||||
struct ei_scalar_cos_op;
|
||||
struct ei_scalar_sin_op;
|
||||
template<typename Scalar> struct ei_scalar_pow_op;
|
||||
template<typename NewType> struct ei_scalar_cast_op;
|
||||
template<typename Scalar> struct ei_scalar_multiple_op;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user