summaryrefslogtreecommitdiff
path: root/lecture_notes/advanced_python/module_plan.rst
diff options
context:
space:
mode:
authorhardythe12014-06-12 14:44:39 +0530
committerhardythe12014-06-12 14:44:39 +0530
commitf4ff073c0e144546d7c205f6c99df6baed763b04 (patch)
tree3c6163a3d3aa22362ab9009ece2019e60fc267a6 /lecture_notes/advanced_python/module_plan.rst
parent2a0aa076b9879a71dba6235ef84efa9cd15fda80 (diff)
downloadsees-f4ff073c0e144546d7c205f6c99df6baed763b04.tar.gz
sees-f4ff073c0e144546d7c205f6c99df6baed763b04.tar.bz2
sees-f4ff073c0e144546d7c205f6c99df6baed763b04.zip
restructuring and renaming files/directories with underscores instead of spaces & '-'
Diffstat (limited to 'lecture_notes/advanced_python/module_plan.rst')
-rw-r--r--lecture_notes/advanced_python/module_plan.rst79
1 files changed, 79 insertions, 0 deletions
diff --git a/lecture_notes/advanced_python/module_plan.rst b/lecture_notes/advanced_python/module_plan.rst
new file mode 100644
index 0000000..2ee4925
--- /dev/null
+++ b/lecture_notes/advanced_python/module_plan.rst
@@ -0,0 +1,79 @@
+Advanced Python
+===============
+
+Module Objectives
+-----------------
+
+After successfully completing this module a participant will be able to:
+
+* generate 2D plots {Ap}
+* Work with arrays and use them effectively {Ap}
+* Solve linear, polynomial and other non-linear equations {Ap}
+* Solve ODEs {Ap}
+* Write mid-sized programs that carry out typical {Ap}
+ engineering/numerical computations such as those that involve
+ (basic) manipulation of large arrays in an efficient manner
+
++---------+-----------------------------------+----------+
+| Session | Topic | Duration |
++---------+-----------------------------------+----------+
+| | Interactive Plottin | 5 min |
+| | - -pylab | |
+| | - plot, linspace | |
+| | | |
+| | Embellishing plots | 10 min |
+| | - clf | |
+| | - title | |
+| | - xlabel, ylabel | |
+| | - annotate | |
+| | - xlim, ylim | |
+| | | |
+| | Saving to scripts | 10 min |
+| | - %hist | |
+| | - %save | |
+| | - %run | |
+| | | |
+| | Saving plots | |
+| | | |
+| | Multiple plots | 15 min |
+| | - legend | |
+| | - *figure* | |
+| | - subplot | |
+| | | |
+| | Plotting data | 10 min |
+| | - loadtxt | |
+| | | |
+| | Other plots | 10 min |
+| | - bar, | |
+| | - pie | |
+| | - scatter | |
+| | - loglog | |
++---------+-----------------------------------+----------+
+| | Arrays - Introduction | 15 min |
+| | - creating from lists | |
+| | - special methods | |
+| | - operations on arrays | |
+| | | |
+| | Accessing pieces of arrays | 15 min |
+| | - accessing and changing elements | |
+| | - rows and columns | |
+| | - slicing and striding | |
+| | | |
+| | Matrix operations | 10 min |
+| | | |
+| | Least square fit | 15 min |
++---------+-----------------------------------+----------+
+| | Solving equations | 15 min |
+| | - solve | |
+| | - roots | |
+| | - fsolve | |
+| | | |
+| | ODEs | 20 min |
+| | - 1st order | |
+| | - 2nd order | |
+| | | |
+| | python modules | 20 min |
+| | - imports | |
+| | - sys.path | |
+| | - writing own modules | |
++---------+-----------------------------------+----------+