Commit 0eb07ac
committed
fixed jacobian(f::Fun)
Test case (requires also JuliaApproximation/ApproxFunBase.jl#479):
using ApproxFun
xdom = Chebyshev(-1..1)
ydom = Chebyshev(-1..1)
domain = xdom * ydom
x,y = Fun(identity, domain)
Dx = Derivative(Chebyshev()^2, [1,0])
Dy = Derivative(Chebyshev()^2, [0,1])
N(u, v) = [
2*u - x;
3*v + y
]
u0 = one(x) * one(y)
v0 = one(x) * one(y)
u, v = newton(N, [u0, v0])
Bug report:
JuliaApproximation#8871 parent fe4a3ed commit 0eb07ac
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
| |||
0 commit comments