day1/exercise/linspace.py
author rivermaker@RivermakerMBP.local
Tue, 27 Oct 2009 16:05:37 +0530
changeset 192 1574b3bc6be7
parent 64 333092b68926
permissions -rw-r--r--
Changed the focus of the statistics

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)