File tree Expand file tree Collapse file tree 1 file changed +23
-23
lines changed Expand file tree Collapse file tree 1 file changed +23
-23
lines changed Original file line number Diff line number Diff line change 5151
5252``` julia
53533 - element Array{Operation,1 }:
54- 10.0 * (u₂ (t) - u₁ (t))
55- u₁ (t) * (28.0 - u₃ (t)) - u₂ (t)
56- u₁ (t) * u₂ (t) - 2.6666666666666665 * u₃ (t)
57- ```
58-
59- Or similarly:
60-
61- ``` julia
62- @variables t x (t) y (t) z (t) dx (t) dy (t) dz (t)
63- @parameters σ ρ β
64- du = [dx,dy,dz]
65- u = [x,y,z]
66- p = [σ,ρ,β]
67- lorenz (du,u,p,t)
68- du
69- ```
70-
71- ``` julia
72- 3 - element Array{Operation,1 }:
73- 10.0 * (y (t) - x (t))
74- x (t) * (28.0 - z (t)) - y (t)
75- x (t) * y (t) - 2.6666666666666665 * z (t)
76- ```
54+ 10.0 * (u₂ (t) - u₁ (t))
55+ u₁ (t) * (28.0 - u₃ (t)) - u₂ (t)
56+ u₁ (t) * u₂ (t) - 2.6666666666666665 * u₃ (t)
57+ ```
58+
59+ Or similarly:
60+
61+ ``` julia
62+ @variables t x (t) y (t) z (t) dx (t) dy (t) dz (t)
63+ @parameters σ ρ β
64+ du = [dx,dy,dz]
65+ u = [x,y,z]
66+ p = [σ,ρ,β]
67+ lorenz (du,u,p,t)
68+ du
69+ ```
70+
71+ ``` julia
72+ 3 - element Array{Operation,1 }:
73+ 10.0 * (y (t) - x (t))
74+ x (t) * (28.0 - z (t)) - y (t)
75+ x (t) * y (t) - 2.6666666666666665 * z (t)
76+ ```
7777
7878### Intermediate Calculations
7979
You can’t perform that action at this time.
0 commit comments