day1/exercise/linspace.py
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 15 Oct 2009 15:50:55 +0530
changeset 127 44c2f614e321
parent 64 333092b68926
permissions -rw-r--r--
Updated Integration section in Session 4.

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)