diff options
author | Christopher Burns | 2010-06-20 22:59:53 -0700 |
---|---|---|
committer | Christopher Burns | 2010-06-20 22:59:53 -0700 |
commit | 098d1a0d329c2906bc25c68e4c94caef2dc886dc (patch) | |
tree | ee2aac6bc20b57c4ffd48ed4ebf987463ff566eb | |
parent | 596be40a15e55b1318f267b62fbbce1ab26d7dac (diff) | |
download | workshops-098d1a0d329c2906bc25c68e4c94caef2dc886dc.tar.gz workshops-098d1a0d329c2906bc25c68e4c94caef2dc886dc.tar.bz2 workshops-098d1a0d329c2906bc25c68e4c94caef2dc886dc.zip |
Add whitespace to exercise code.
--HG--
branch : scipy2010
-rw-r--r-- | day1/exercise/four_plot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/exercise/four_plot.py b/day1/exercise/four_plot.py index 5417ee5..4130241 100644 --- a/day1/exercise/four_plot.py +++ b/day1/exercise/four_plot.py @@ -1,4 +1,4 @@ -x=linspace(-5*pi, 5*pi, 500) +x = linspace(-5*pi, 5*pi, 500) plot(x, x, 'b') plot(x, -x, 'b') plot(x, sin(x), 'g', linewidth=2) |