amrods

Results 11 issues of amrods

For example `\alpha` no longer suggests `α` in the main editor. In fact, I think right now it is impossible to type `α` in the main editor.

bug
needs more info

see here: https://github.com/jonniedie/ComponentArrays.jl/issues/91 ``` using Optim using ComponentArrays using UnPack function rosenbrock(ca) @unpack x, y = ca (1.0 - x)^2 + 100.0 * (y - x^2)^2 end ca = ComponentArray{Float64}(x=2.0,...

Both of these throw an error: ``` fixedpoint(x -> 0.5*(2/x + x), [1.0]; autodiff=:true) ERROR: TypeError: in keyword argument autodiff, expected Symbol, got a value of type Bool fixedpoint(x ->...

I just did a search/replace of xtol, ftol to x_tol, f_tol.

Can I propose to rename options xtol, ftol to x_tol, f_tol to be consistent with Optim?

```julia using NonlinearSolve function f!(F, x, _) F[1] = (x[1] + 3) * (x[2]^3 - 7) + 18 F[2] = sin(x[2] * exp(x[1]) - 1) nothing end x0 = [0.1;...

see here: https://discourse.julialang.org/t/help-with-nonlinearsolve-jl/74735

I'm willing to define some rules for `SpecialFunctions`, however some of the derivatives require functions not implemented in `SpecialFunctions` but in say `GSL.jl`. Is there any style convention for only...

Should we enforce that the derivatives of `max(x, y)` and `min(x, y)` are undefined when `x == y`?