diff options
| -rw-r--r-- | film/French Classics | 41 | ||||
| -rw-r--r-- | matlab | 20 | 
2 files changed, 58 insertions, 3 deletions
| 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 @@ -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  ------------------ | 
