Skip to content

Commit 090d643

Browse files
authored
define params
1 parent f74d037 commit 090d643

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/src/highlevel.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ We can use this to build a nonlinear function for use with NLsolve.jl:
122122
```julia
123123
f = eval(nlsys_func)
124124
du = zeros(3); u = ones(3)
125-
f(du,u,(10.0,26.0,2.33))
125+
params = (10.0,26.0,2.33)
126+
f(du,u,params)
126127
du
127128

128129
#=

0 commit comments

Comments
 (0)