mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Add component-wise atan() function (see bug #80).
This commit is contained in:
@@ -141,6 +141,15 @@ tan() const
|
||||
return derived();
|
||||
}
|
||||
|
||||
/** \returns an expression of the coefficient-wise arc tan of *this.
|
||||
*
|
||||
* \sa cos(), sin(), tan()
|
||||
*/
|
||||
inline const CwiseUnaryOp<internal::scalar_atan_op<Scalar>, Derived>
|
||||
atan() const
|
||||
{
|
||||
return derived();
|
||||
}
|
||||
|
||||
/** \returns an expression of the coefficient-wise power of *this to the given exponent.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user