blob: 0d5b19aa7166d4d6ffd4293ca07841e6d0601b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
  |