Loading [MathJax]/extensions/MathMenu.js
Automatic Differentiation
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches

◆ apply_scalar_binary() [2/5]

template<typename F , typename T1 , typename T2 , require_all_eigen_t< T1, T2 > * = nullptr>
auto stan::math::apply_scalar_binary ( F &&  f,
T1 &&  x,
T2 &&  y 
)
inline

Specialization for use with two Eigen inputs.

Eigen's binaryExpr framework is used for more efficient indexing of both row- and column-major inputs without separate loops.

Template Parameters
FType of functor to apply.
T1Type of first argument to which functor is applied.
T2Type of second argument to which functor is applied.
Parameters
ffunctor to apply to Eigen input.
xFirst Eigen input to which operation is applied.
ySecond Eigen input to which operation is applied.
Returns
Eigen object with result of applying functor to inputs.

Definition at line 56 of file apply_scalar_binary.hpp.