summaryrefslogtreecommitdiffstats
path: root/lectures/lec03_matlab2
diff options
context:
space:
mode:
Diffstat (limited to 'lectures/lec03_matlab2')
-rw-r--r--lectures/lec03_matlab214
1 files changed, 14 insertions, 0 deletions
diff --git a/lectures/lec03_matlab2 b/lectures/lec03_matlab2
new file mode 100644
index 0000000..0d5b19a
--- /dev/null
+++ b/lectures/lec03_matlab2
@@ -0,0 +1,14 @@
+
+### julia notes
+
+for plotting, 'winston' is simple and matlab-like
+ 'gadfly' is nice/correct, using design paradigms
+ 'pyplot' is matplotlib
+
+for this class, at least to start, i'm going to try winston.
+
+Pkg.add("Winston")
+using Winston
+plot( cumsum(randn(1000)) )
+
+in winston, fplot() is nice for plotting functions over ranges