Skip to content

Commit

Permalink
Update modelingtoolkit.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Feb 24, 2024
1 parent 50711d7 commit 9fad71e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/tutorials/modelingtoolkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using ModelingToolkit, NonlinearSolve
# Define a nonlinear system
eqs = [0 ~ σ * (y - x), 0 ~ x * (ρ - z) - y, 0 ~ x * y - β * z]
@named ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
@mtkbuild ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
u0 = [x => 1.0, y => 0.0, z => 0.0]
Expand Down

0 comments on commit 9fad71e

Please sign in to comment.