We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d86b5 commit efcd15cCopy full SHA for efcd15c
docs/arrow_functions.html
@@ -34,7 +34,7 @@ <h2>User Defined Function</h2>
34
a = -2
35
b = 1
36
c = 9
37
- solver.add_function((x) => f(x, a, b, c)) //Add the first equation to the solver.
+ solver.addFunction((x) => f(x, a, b, c)) //Add the first equation to the solver.
38
x_guess = [1] //Guess the initial values of the solution.
39
s = await solver.solve(x_guess) //Solve the equation
40
x = s.x //assign the calculated solution array to the variable x
0 commit comments