Re: [sage-support] Re: integrating a matrix

2015-07-15 Thread fidelbc
Maybe you can try implementing something along these lines *def integrate_matrix(A):* *m = A.nrows()* *n = A.ncols()* *return matrix(m,n, [entry.integrate() for row in A for entry in row ])* On Wednesday, July 15, 2015 at 12:33:21 PM UTC-4, avi kaur wrote: > > On Wed, Jul 15, 2015 at

[sage-support] Re: integrating a matrix

2015-07-15 Thread Dima Pasechnik
It's not clear what this means mathematically, please explain. On Wednesday, 15 July 2015 13:01:59 UTC+1, avi kaur wrote: > > hello everybody > > I want to know, How we can obtain integration of matrix. suppose i have > this matrix: > > x,y,z=var('x','y','z') > f=matrix([[x^3,2*x^2,3*x],[2* > x^2

[sage-support] integrating a matrix

2015-07-15 Thread avi kaur
hello everybody I want to know, How we can obtain integration of matrix. suppose i have this matrix: x,y,z=var('x','y','z') f=matrix([[x^3,2*x^2,3*x],[2* x^2,x^4,x],[3*x,x,x^5]]) I am unable to obtain the integration of matrix of this above problem. -- You received this message because you