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 9fad71e commit fe891b6Copy full SHA for fe891b6
docs/src/basics/diagnostics_api.md
@@ -34,7 +34,7 @@ using ModelingToolkit, NonlinearSolve
34
35
# Define a nonlinear system
36
eqs = [0 ~ σ * (y - x), 0 ~ x * (ρ - z) - y, 0 ~ x * y - β * z]
37
-@named ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
+@mtkbuild ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
38
39
u0 = [x => 1.0, y => 0.0, z => 0.0]
40
0 commit comments