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

◆ cholesky_factor_constrain() [3/6]

template<typename T , require_std_vector_t< T > * = nullptr>
auto stan::math::cholesky_factor_constrain ( const T &  x,
int  M,
int  N 
)
inline

Return the Cholesky factor of the specified size read from the specified vector.

A total of (N choose 2) + N + N * (M - N) free parameters are required to read an M by N Cholesky factor. This overload handles looping over the elements of a standard vector.

Template Parameters
TA standard vector with inner type inheriting from Eigen::DenseBase or a var_value with inner type inheriting from Eigen::DenseBase with compile time dynamic rows and 1 column
Parameters
xVector of unconstrained values
Mnumber of rows
Nnumber of columns
Returns
Cholesky factor

Definition at line 104 of file cholesky_factor_constrain.hpp.