Automatic Differentiation
 
Loading...
Searching...
No Matches
std_normal_lccdf.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_PROB_STD_NORMAL_LCCDF_HPP
2#define STAN_MATH_PRIM_PROB_STD_NORMAL_LCCDF_HPP
3
5
6namespace stan {
7namespace math {
8namespace internal {
9constexpr char std_normal_lccdf_func[] = "std_normal_lccdf";
10} // namespace internal
11
12template <
13 typename T_y,
16 return std_normal_lcdf<internal::std_normal_lccdf_func>(
18}
19
20} // namespace math
21} // namespace stan
22#endif
require_all_not_t< is_nonscalar_prim_or_rev_kernel_expression< std::decay_t< Types > >... > require_all_not_nonscalar_prim_or_rev_kernel_expression_t
Require none of the types satisfy is_nonscalar_prim_or_rev_kernel_expression.
return_type_t< T_y_cl > std_normal_lccdf(const T_y_cl &y)
Returns the log standard normal complementary cumulative distribution function.
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
constexpr char std_normal_lccdf_func[]
T as_array_or_scalar(T &&v)
Returns specified input value.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...