Calculus.jl
Calculus.jl copied to clipboard
Calculus functions in Julia
I wonder why you don't export `gradient` function ?
This pull request sets up the CI workflow on this repository.
At least, that's what I read [here](https://discourse.julialang.org/t/knowing-what-package-a-function-is-from/49258/6). Perhaps there should be a mention of this somewhere in the README, to save new users disappearing down a slippery gradient of frustration...?
I have a complex code that broke when I switched from Julia 1.4 to Julia 1.5. The breakage seems to be intertwined with the Calculus package. I have tried but...
I have a 1D system `x` coupled to a harmonic oscillator `y` with a frequency of `omega`, so `f_yy` should be `omega^2`. However, when the frequency of the harmonic oscillator...
eps(n) and thus finite_difference(,n) and its friends fail for n of irrational type. It's certainly an edge case, but we can do a quick conversion to float for these (pi,...
Example code copied from README not working (julia-1.3.0, Calculus-0.5.1): ```julia julia> using Calculus julia> f(x) = sin(x) f (generic function with 1 method) julia> f'(1.0) - cos(1.0) ERROR: MethodError: no...
[skip ci]
You might need some fixes with README 😄 Related issues #40 #52 : `float(pi)` could fix this: ```julia julia> using Calculus julia> h1 = second_derivative(sin) #6 (generic function with 1...
The calculus module is great for performing finite differences for derivative, jacobian and hessian But when I tried to use it with my own type of floating point numbers, it...