Stan Math Library
4.9.0
Automatic Differentiation
|
var_value< Eigen::MatrixXd > stan::math::corr_matrix_constrain | ( | const T & | x, |
Eigen::Index | k | ||
) |
Return the correlation matrix of the specified dimensionality derived from the specified vector of unconstrained values.
The input vector must be of length \({k \choose 2} = \frac{k(k-1)}{2}\). The values in the input vector represent unconstrained (partial) correlations among the dimensions.
The transform based on partial correlations is as specified in
The free vector entries are first constrained to be valid correlation values using corr_constrain(T)
.
T | type of input vector (must be a var_value<S> where S inherits from EigenBase) |
x | Vector of unconstrained partial correlations. |
k | Dimensionality of returned correlation matrix. |
std::invalid_argument | if x is not a valid correlation matrix. |
Definition at line 41 of file corr_matrix_constrain.hpp.