Define an analytic function in python

1

I need to do some operations with arrays (of very large size), but the elements of it are analytical functions. Is there a way to do this in Python?

Ex:

Matrix = [[x ** 2 + 3x, x + y + 1] ... [...] ..... [...]]

    
asked by anonymous 31.10.2015 / 06:26

1 answer

0

Is this what you are looking for?

link

    
31.10.2015 / 11:44