day1/exercise/linspace.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 26 Oct 2009 12:41:40 +0530
changeset 166 ddfd95133adc
parent 64 333092b68926
permissions -rw-r--r--
Taken task based approach for Session 3, day 1. Removed introduction to dictionaries slide and accommodated the same content while solving the problem.

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)