diff options
author | Madhusudan.C.S | 2009-10-08 18:59:47 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2009-10-08 18:59:47 +0530 |
commit | 3c347833ac7e5f5925713edf33b82a0b18434c24 (patch) | |
tree | 95544a2a9d87119b12090a95a6f92d082a23caaa /day1/exercise/linspace.py | |
parent | a00acc9ede7b681bf145bb8cd20b1b4d21daa103 (diff) | |
download | workshops-more-scipy-3c347833ac7e5f5925713edf33b82a0b18434c24.tar.gz workshops-more-scipy-3c347833ac7e5f5925713edf33b82a0b18434c24.tar.bz2 workshops-more-scipy-3c347833ac7e5f5925713edf33b82a0b18434c24.zip |
Added quiz tex file and all exercise problems Madhu worked out.
Diffstat (limited to 'day1/exercise/linspace.py')
-rw-r--r-- | day1/exercise/linspace.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/day1/exercise/linspace.py b/day1/exercise/linspace.py new file mode 100644 index 0000000..404ac4c --- /dev/null +++ b/day1/exercise/linspace.py @@ -0,0 +1,10 @@ +def linspace(a, b, N): + lns = [] + step = (float(b) - float(a)) / float(N - 1) + print step + for i in range(N): + lns.append(a + i*step) + + return lns + +print linspace(0, 5, 11) |