-
The licence for R6RS-ad is GPL it seems. Is your implementation a clean-room implementation of the papers or have you directly ported the code? Sadly the EPL and GPL are incompatible and the Clojure c…
whilo updated
7 years ago
-
Ooookay.
I succumb to the peer pressure. Time to change this...
-
How do I access the time variable when specifying an ODE with time-varying rates. Here is a simple example:
```julia
using DiffEqBase
using OrdinaryDiffEq
function myode(t,u,du)
du[1] = -…
-
Ok, so I did some research today and decided to take a bottom-up approach in implementing the algorithm. I intend to follow the sequence:
- [x] 1. Implement the projected CG;
- [x] 2. Implement th…
-
From a solution to a system of equations, I want to extract one component as a **function**.
Since a solution object evaluates at all points in the specified interval with interpolations this works:
…
-
The way the autodifferentiation is done isn't compatible with FowardDiff v0.5.0. With the new tagging system, it seems that the function that is used in the configuration part may not be the same func…
-
I'm trying to implement the following architecture with Keras (Theano backend).
I have a first Sequential network (say S1) which takes an image as input and has 4 linear output, which do correspon…
-
Hi
Trying out the DiffEq packages, that are very impressive!
However, I run into a problem (with the ForwardDiff package; unsure where to open the issue) when using the `Rosenbrock23` method for…
-
From the README
```julia
using NLsolve
function f!(x, fvec)
fvec[1] = (x[1]+3)*(x[2]^3-7)+18
fvec[2] = sin(x[2]*exp(x[1])-1)
end
nlsolve(f!, [ 0.1; 1.2],autodiff=true)
```
gives…
-
Hi all,
I apologize if this is not the right place to post.
I have used ForwardDiff with great success in the past. Thanks for putting this together. However this time, I am using ForwardDiff.gr…