day1/exercise/linspace.py
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 08 Oct 2009 19:06:57 +0530
changeset 69 9fbd2a71fef2
parent 64 333092b68926
permissions -rw-r--r--
Merged Mainline and my branch.

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)