##// END OF EJS Templates
Added mdboom's math_to_image from matplotlib.
Added mdboom's math_to_image from matplotlib.

File last commit:

r3690:aafdf2be
r3881:290c0f44
Show More
task1.py
12 lines | 188 B | text/x-python | PythonLexer
from IPython.parallel import Client
rc = Client()
v = rc.load_balanced_view()
rc[:]['d'] = 30
def task(a):
return a, 10*d, a*10*d
ar = v.apply(task, 5)
print "a, b, c: ", ar.get()