diff options
author | Christopher Burns | 2010-06-20 22:59:53 -0700 |
---|---|---|
committer | Christopher Burns | 2010-06-20 22:59:53 -0700 |
commit | 9524a836dcc4d2aedc9ba6643d40530e6f22fd8c (patch) | |
tree | ee2aac6bc20b57c4ffd48ed4ebf987463ff566eb | |
parent | 7d6692f4bb6f1e41263e06bf5cf2cc55b8afd9bf (diff) | |
download | workshops-more-scipy-9524a836dcc4d2aedc9ba6643d40530e6f22fd8c.tar.gz workshops-more-scipy-9524a836dcc4d2aedc9ba6643d40530e6f22fd8c.tar.bz2 workshops-more-scipy-9524a836dcc4d2aedc9ba6643d40530e6f22fd8c.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) |