Tamas K. Papp
Tamas K. Papp
`pdf-view-set-slice-from-bounding-box` is great, but does not work well for documents that do not have the same bounding box on all pages (left/right, chapter headings, etc). I wonder if it would...
Occasionally parts of the depot become corrupted (because of interrupted downloads/processes, bugs in Pkg, etc). While this is not part of the normal workflow, it would be great if the...
Currently, the stick-breaking setup uses `tanh(x)` to map the real line to `(-1, 1)` in the correlation Cholesky factor. This is not always ideal, as it is easy to get...
Technically not a matrix, but as a convenience feature it would be nice.
Currently, transformations may return infinity at the edges. Eg ```julia julia> inverse(as(Real, 0.5, 1.0), 0.5) -Inf ``` The whole code should be reviewed, and each transformation should throw a `DomainError`.
Keeping it experimental.
```julia using TransformVariables, StaticArrays t = corr_cholesky_factor(SMatrix{7,7}) z = zeros(dimension(t)) @allocated transform(t, z) #
`inverse_and_logjac` was added in #31, considered experimental, but maybe it should be exported and documented.
I have a type wrapping a `NamedTuple`, that essentially forwards `getproperty`. For the purposes of the MWE, let it be ```julia struct WrapNT{NT
I am wondering if inserting an element `c = 3` into `(a = 1, b = 2)`, so that the result is `(a = 1, c =3, b = 2)`,...