summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MIT Courses8
-rw-r--r--film/French Classics41
-rw-r--r--film/To Watch2
-rw-r--r--matlab20
4 files changed, 67 insertions, 4 deletions
diff --git a/MIT Courses b/MIT Courses
index 097efb2..6020e74 100644
--- a/MIT Courses
+++ b/MIT Courses
@@ -64,6 +64,14 @@ Other interesting courses:
+ 24.900 - Introduction to Linguistics (hass-d)
+ 6.046J - Design and Analysis of Algorithms (requirements)
+ 18.335J - Introduction to Numerical Methods (grad, summer)
+ + 18.125 - Real and Functional Analysis
+ + 18.385j - Nonlinear Dynamics and Chaos
+ + 18.404j - Theory of Computation
+ + 18.565 - Recursion Theory
+ + 18.703 - Modern Algebra (spring)
+ + 18.701/702 - Algebra I/II (fall/spring)
+ + 18.901 - Introduction to Topology (fall)
+ + 18.950 - Differential Geometry
+ 8.261J - Introduction to Computational Neuroscience (fall)
+ 8.292J - Fluid Physics (spring)
+ 8.371J - Quantum Information Science (grad, spring)
diff --git a/film/French Classics b/film/French Classics
index 4523f6f..a2eecaa 100644
--- a/film/French Classics
+++ b/film/French Classics
@@ -1,8 +1,12 @@
+======================
Classic French Films
-------------------------
+======================
.. note:: started from the course 21f.053 by ed turk taught at MIT spring 2008
+Pre and Post War
+----------------
+
**Boudu sauve des eaux** ("Boudu saved from drowning")
| 1932, directed by Jean Renoir
| http://www.imdb.com/title/tt0022718/
@@ -16,7 +20,40 @@ Classic French Films
Apparently you can see it free on youtube:
http://www.youtube.com/watch?v=lcasqBRzeeA
-**Le Jour se leve**
+**Le Jour se leve** ("Daybreak")
| 1939, directed by Marcel Carne
| http://www.imdb.com/title/tt0031514/
| http://en.wikipedia.org/wiki/Le_Jour_se_l%C3%A8ve
+
+**Le Corbeau** ("The Raven")
+ | 1943, directed by Henri-Georges Clouzot
+ | http://www.imdb.com/title/tt0035753/
+ | http://en.wikipedia.org/wiki/Le_Jour_se_l%C3%A8ve
+
+**La Belle et La Bete** ("Beauty and the Beast")
+ | 1946, directed by Jean Cocteau
+ | http://www.imdb.com/title/tt0038348/
+ | http://en.wikipedia.org/wiki/Beauty_and_the_Beast_(1946_film)
+
+The New Wave
+--------------
+
+**Cleo de 5 a 7** ("Cleo from 5 to 7")
+ | 1961, directed by Agnes Varda
+ | http://www.imdb.com/title/tt0055852/
+ | http://en.wikipedia.org/wiki/Cl%C3%A9o_from_5_to_7
+
+**Hiroshima mon Amour**
+ | 1959, directed by Alain Resnais
+ | http://www.imdb.com/title/tt0052893/
+ | http://en.wikipedia.org/wiki/Hiroshima_Mon_Amour
+
+**Tirez sur le pianiste** ("Shoot the Piano Player")
+ | 1960, directed by Francois Truffaut
+ | http://www.imdb.com/title/tt0054389/
+ | http://en.wikipedia.org/wiki/Shoot_the_Piano_Player
+
+**Pierrot le fou**
+ | 1965, directed by Jean-Luc Godard
+ | http://www.imdb.com/title/tt0059592/
+ | http://en.wikipedia.org/wiki/Pierrot_le_fou
diff --git a/film/To Watch b/film/To Watch
index 61a9202..c003a87 100644
--- a/film/To Watch
+++ b/film/To Watch
@@ -1,5 +1,5 @@
-Films To Watch
--------------
+Films To Watch
--------------
diff --git a/matlab b/matlab
index ee309d9..20e7110 100644
--- a/matlab
+++ b/matlab
@@ -7,9 +7,27 @@ Matlab
`cyclismo.org <http://www.cyclismo.org/tutorial/matlab/matrix.html>`_ has a good tutorial.
+Matrix Syntax
+------------------
+A = [1,2,3,4]
+ creates a new matrix
+A(1)
+ selects the first element of a matrix, **zero-indexed**
+B = [ [1,2,3], [4,5,6], [7,8,9] ]
+ creates a one dimensional matrix
+
+::
+
+ B = [ [1,2,3],
+ [4,5,6],
+ [7,8,9] ]
+
+ creates a two dimensional matrix
+
Matrix Operations
------------------
-``inv`` inverts a square matrix
+``inv``
+ inverts a square matrix
Meta-Commands
------------------