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 5:55 PM, Dima Pasechnik <[email protected] > <javascript:>> wrote: > > It's not clear what this means mathematically, please explain. > I have to solve out the following problem with sage math. > > > > > > -- > Avi kaur > Blog: https://avikashyap620.wordpress.com > "There is no lacking of opportunity, The thing is you do not want to > see It" > > > -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
