File: lorenz_code.txt

package info (click to toggle)
xmds2 3.1.0%2Bdfsg2-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,616 kB
  • sloc: python: 64,051; cpp: 4,868; ansic: 1,463; makefile: 144; sh: 54; javascript: 8
file content (5 lines) | stat: -rw-r--r-- 100 bytes parent folder | download | duplicates (8)
1
2
3
4
5
<![CDATA[
        dx_dt = sigma*(y-x);
        dy_dt = r*x - y - x*z;
        dz_dt = x*y - b*z;
]]>