321
|
1 |
#+LaTeX_CLASS: beamer
|
|
2 |
#+LaTeX_CLASS_OPTIONS: [presentation]
|
|
3 |
#+BEAMER_FRAME_LEVEL: 1
|
|
4 |
|
|
5 |
#+BEAMER_HEADER_EXTRA: \usetheme{Warsaw}\useoutertheme{infolines}\usecolortheme{default}\setbeamercovered{transparent}
|
|
6 |
#+COLUMNS: %45ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) %4BEAMER_col(Col) %8BEAMER_extra(Extra)
|
|
7 |
#+PROPERTY: BEAMER_col_ALL 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 :ETC
|
|
8 |
#+OPTIONS: H:5 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
|
|
9 |
|
|
10 |
#+TITLE: Plotting Data
|
|
11 |
#+AUTHOR: FOSSEE
|
|
12 |
#+DATE: 2010-09-14 Tue
|
|
13 |
#+EMAIL: info@fossee.in
|
|
14 |
|
|
15 |
# \author[FOSSEE] {FOSSEE}
|
|
16 |
|
|
17 |
# \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
|
|
18 |
# \date{}
|
|
19 |
|
|
20 |
* Tutorial Plan
|
|
21 |
** Datatypes in Python
|
|
22 |
** Operators in Python
|
|
23 |
|
|
24 |
* Numbers
|
|
25 |
** Integers
|
|
26 |
** Float
|
|
27 |
** Complex
|
|
28 |
|
|
29 |
* Boolean
|
|
30 |
** True
|
|
31 |
** False
|
|
32 |
|
|
33 |
* Sequence Data types
|
|
34 |
** Data in Sequence
|
|
35 |
** Accessed using Index
|
|
36 |
*** list
|
|
37 |
*** String
|
|
38 |
*** Tuple
|
|
39 |
|
|
40 |
* All are Strings
|
|
41 |
|
|
42 |
** k='Single quote'
|
|
43 |
** l="Double quote contain's single quote"
|
|
44 |
** m='''"Contain's both"'''
|
|
45 |
|
|
46 |
* Summary
|
|
47 |
** a=73
|
|
48 |
** b=3.14
|
|
49 |
** c=3+4j
|
|
50 |
|
|
51 |
* Summary Contd.
|
|
52 |
|
|
53 |
** t=True
|
|
54 |
** f=False
|
|
55 |
** t and f
|
|
56 |
|
|
57 |
* Summary Contd.
|
|
58 |
** l= [2,1,4,3]
|
|
59 |
** s='hello'
|
|
60 |
** tu=(1,2,3,4)
|
|
61 |
|
|
62 |
* Summary Contd.
|
|
63 |
** tu[-1]
|
|
64 |
** s[1:-1]
|
|
65 |
|
|
66 |
* Summary Contd.
|
|
67 |
|
|
68 |
** Sorted(l)
|
|
69 |
** reversed(s)
|
|
70 |
|
|
71 |
|
|
72 |
|