自己定義関数を使用:
def myfunc(x1,x2, ... ,x10): # list
...
matrix operation on x1, x2 ..., x10
...
return X # one value
次のように myfunc() を呼び出して、配列操作を使用して A を B に転送する正しい方法は何ですか?
A.myfunc() >> B