Cwise_array_power_array.cpp
Go to the documentation of this file.
1 Array<double,1,3> x(8,25,3),
2  e(1./3.,0.5,2.);
3 cout << "[" << x << "]^[" << e << "] = " << x.pow(e) << endl; // using ArrayBase::pow
4 cout << "[" << x << "]^[" << e << "] = " << pow(x,e) << endl; // using Eigen::pow
e
Array< double, 1, 3 > e(1./3., 0.5, 2.)
x
Array< double, 1, 3 > x(8, 25, 3)
Eigen::ArrayBase::pow
const Eigen::CwiseBinaryOp< Eigen::internal::scalar_pow_op< typename Derived::Scalar, typename ExponentDerived::Scalar >, const Derived, const ExponentDerived > pow(const Eigen::ArrayBase< Derived > &x, const Eigen::ArrayBase< ExponentDerived > &exponents)
Definition: GlobalFunctions.h:143


gtsam
Author(s):
autogenerated on Thu Jun 13 2024 03:02:05