You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/0_intro.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ We represent it using a type called `ImplicitFunction`, which you will see in ac
85
85
=#
86
86
87
87
#=
88
-
First we define a forward mapping correponding to the function we consider.
88
+
First we define a forward mapping corresponding to the function we consider.
89
89
It returns the actual output $y(x)$ of the function, and can be thought of as a black box solver.
90
90
Importantly, this Julia callable _doesn't need to be differentiable by automatic differentiation packages but the underlying function still needs to be mathematically differentiable_.
91
91
=#
@@ -121,7 +121,7 @@ implicit(x) ≈ sqrt.(x)
121
121
@testimplicit(x) ≈sqrt.(x) #src
122
122
123
123
#=
124
-
And when we try to compute its Jacobian, the [implicit function theorem](https://en.wikipedia.org/wiki/Implicit_function_theorem) is applied in the background to circumvent the lack of differentiablility of the forward mapping.
124
+
And when we try to compute its Jacobian, the [implicit function theorem](https://en.wikipedia.org/wiki/Implicit_function_theorem) is applied in the background to circumvent the lack of differentiability of the forward mapping.
0 commit comments