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] ... [...] ..... [...]]
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] ... [...] ..... [...]]