I would like to run the fmin_powell optimizer for different arguments from the f list at the same time.
f = ['1','2','3','4','5','6']
optg_res = opt.fmin_powell(runner, coeff, args=(f,f), disp=0)
Is there any easy method of doing it? Maybe I would use any bash command to run it?