1#ifndef STAN_MATH_PRIM_FUN_INV_SQRT_HPP
2#define STAN_MATH_PRIM_FUN_INV_SQRT_HPP
15template <
typename T, require_arithmetic_t<T>* =
nullptr>
17 return inv(std::sqrt(x));
20template <
typename T, require_complex_t<T>* =
nullptr>
34 static inline auto fun(
const T& x) {
47template <
typename Container, require_ad_container_t<Container>* =
nullptr>
60template <
typename Container, require_not_var_matrix_t<Container>* =
nullptr,
61 require_container_bt<std::is_arithmetic, Container>* =
nullptr>
69 x, [](
const auto& v) {
return v.array().
rsqrt(); });
rsqrt_< as_operation_cl_t< T > > rsqrt(T &&a)
fvar< T > sqrt(const fvar< T > &x)
fvar< T > inv_sqrt(const fvar< T > &x)
fvar< T > inv(const fvar< T > &x)
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Base template class for vectorization of unary scalar functions defined by a template class F to a sc...
static auto fun(const T &x)
Structure to wrap 1 / sqrt(x) so that it can be vectorized.