Benoît Richard
Benoît Richard
For example the bar of the sqrt: ```julia text(L"\sqrt{2}") ```  Using `space=:data` put the line at the correct place with the correct length, but an incorrect thickness: ```julia text(L"\sqrt{2}",...
Implement the pullback for the QR decomposition, following: Walter and Lehmann, 2018, Algorithmic Differentiation of Linear Algebra Functions with Application in Optimum Experimental Design
There recently have been [some discussions](https://discourse.julialang.org/t/discussion-on-why-i-no-longer-recommend-julia-by-yuri-vishnevsky/81151) about what can be done in Julia to prevent composing various package in a way that leads to silent error or nonsensical result. A...
Supporting special functions would be nice (see e.g. https://github.com/JuliaIntervals/IntervalRootFinding.jl/issues/175). I thought already was an issue here about this, but I can't find it. This is only easy to do for...
Comparisons (`==`, `>`, ` X = -0.001..0.001 [-0.00100001, 0.00100001] julia> sin(X)/X [-∞, ∞] ``` because `X != 0` (correct result is `[0.999998355066745, 1]`). In particular this makes many functions of...
This PR is my latest take on solving #237 and is a replacement #254. The main reason for a new PR and the closing of the previous one is that...
Float literals are parsed before being passed to the macro: ```julia julia> macro isitonetenth(expr) @show expr @show typeof(expr) @show expr == 0.1 end @isitonetenth (macro with 1 method) julia> @isitonetenth...
Fix #182. I have define a new type alias of all supported type (basically all built-in number type). Therefore this make the implementation the less generic possible, which is also...
From a discussin started here: https://github.com/JuliaIntervals/IntervalArithmetic.jl/pull/461#discussion_r642653327 Currently decorated interval always check for validity (it is in the `DecoratedInterval` constructor) while for bare interval one need to use `interval` instead of...
I have an (yet untested) implementation of discrete Fréchet distance between curves that I would be happy to share. Is this package a good fit for such kind of distances...