With a self defined function:
def myfunc(x1,x2, ... ,x10): # list
...
matrix operation on x1, x2 ..., x10
...
return X # one value
What is the right way to use array operation to transfer A to B by calling myfunc() like this:
A.myfunc() >> B