File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1+ # Unreleased
2+
3+ - minor doc updates for CorrCholeskyFactor
4+
15# 0.3.2
26
37- Check length of inputs for CorrCholeskyFactor
Original file line number Diff line number Diff line change 9090
9191Cholesky factor of a correlation matrix of size `n`.
9292
93- Transforms ``n×(n-1)/2`` real numbers to an ``n×n`` upper-triangular matrix `Ω`, such that
94- `Ω'*Ω` is a correlation matrix (positive definite, with unit diagonal).
93+ Transforms ``n×(n-1)/2`` real numbers to an ``n×n`` upper-triangular matrix `U`, such that
94+ `U'*U` is a correlation matrix (positive definite, with unit diagonal).
95+
96+ # Notes
97+
98+ If
99+
100+ - `z` is a vector of `n` IID standard normal variates,
101+
102+ - `σ` is an `n`-element vector of standard deviations,
103+
104+ - `U` is obtained from `CorrCholeskyFactor(n)`,
105+
106+ then `U' * Diagonal(σ) * z` will be a multivariate normal with the given variances and
107+ correlation matrix `U' * U`.
95108"""
96109@calltrans struct CorrCholeskyFactor <: VectorTransform
97110 n:: Int
You can’t perform that action at this time.
0 commit comments