I\'m trying to run over the parameters space of a 6 parameter function to study it\'s numerical behavior before trying to do anything complex with it so I\'m searching for a
It looks like you want a grid to evaluate your function, in which case you can use numpy.ogrid (open) or numpy.mgrid (fleshed out):
numpy.ogrid
numpy.mgrid
import numpy my_grid = numpy.mgrid[[slice(0,1,0.1)]*6]