diff options
author | Puneeth Chaganti | 2009-11-05 20:47:16 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2009-11-05 20:47:16 +0530 |
commit | 4c868a0d6e3f45bbb744c8cb04c64ebe48896fe4 (patch) | |
tree | 34798aceed3b0c392de072d375d93ba0740e99b8 /day1/session6.tex | |
parent | 6465ca5143b905f5ea348ea3afb4282980956985 (diff) | |
download | workshops-4c868a0d6e3f45bbb744c8cb04c64ebe48896fe4.tar.gz workshops-4c868a0d6e3f45bbb744c8cb04c64ebe48896fe4.tar.bz2 workshops-4c868a0d6e3f45bbb744c8cb04c64ebe48896fe4.zip |
Added save command in session1.
Diffstat (limited to 'day1/session6.tex')
-rwxr-xr-x | day1/session6.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/session6.tex b/day1/session6.tex index 01b0fc9..ae68ca1 100755 --- a/day1/session6.tex +++ b/day1/session6.tex @@ -347,7 +347,7 @@ We shall use the simple ODE of a simple pendulum. \begin{lstlisting} In []: def pend_int(initial, t): .... theta, omega = initial - .... g, L = -9.81, 0.2 + .... g, L = 9.81, 0.2 .... f=[omega, -(g/L)*sin(theta)] .... return f .... |