Tamas K. Papp
Tamas K. Papp
MWE: ```julia using ReverseDiff f(x) = fma(x...) ReverseDiff.gradient(f, zeros(3)) ```
Given a dataset, which may be a scalar or an array, I am wondering what the generic syntax is to get its *contents*, so that they remain valid after the...
AFAICT the [implementation](https://github.com/JuliaStats/MultivariateStats.jl/blob/master/src/lreg.jl) of linear regression forms the `X'X` matrix then calculates `(X'X)⁻¹(X'y)` using Cholesky factorization. I am curious why this was chosen. The the best of my knowledge, orthogonal...
Eg if ```toml baseURL = "my.site/dir" ``` then `.RelPermalink` of the root will be `dir`, so the condition [here](https://github.com/mismith0227/hugo_theme_pickles/blob/d12aafb104cca1cc4614875842968ea1c59f5173/layouts/partials/head.html#L54) is never true. Replacing that line with ``` {{ if eq...
Sometimes I solve nonlinear systems of the form ```julia f(g(x)) ≈ 0 # could be a scalar or a vector ``` where `g(x)` is a large, costly, and ultimately interesting...
Fixes #283.
When constructing options it would occasionally be useful to define not only values, but also keys with expressions. Currently the only way to do this that I am aware of...
(Continuing discussion that came up in #206) The manual could contain a few hints on the recommended TeX suite. ### The kitchen sink approach Specifically, we recommend *full* and *recent*...
I think we should use issue templates. @KristofferC, I don't have permissions on this repo to create them, so if you agree please create some. I am thinking of something...
Currently the generation of formats works like this: ``` julia --0--> tex --1--> pdf --2--> svg | +----3--> png ``` It is my impression that (1) is relatively expensive, while...