We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50711d7 commit 9fad71eCopy full SHA for 9fad71e
docs/src/tutorials/modelingtoolkit.md
@@ -13,7 +13,7 @@ using ModelingToolkit, NonlinearSolve
13
14
# Define a nonlinear system
15
eqs = [0 ~ σ * (y - x), 0 ~ x * (ρ - z) - y, 0 ~ x * y - β * z]
16
-@named ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
+@mtkbuild ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
17
18
u0 = [x => 1.0, y => 0.0, z => 0.0]
19
0 commit comments