First time here? Check out the FAQ!
answered 2017-05-22 14:36:46 +0100
t, s = var(' t s ') A = matrix([[3*t,t^2],[-2*t, t]]) B = A.apply_map(lambda e: integrate(e,t,0,s)) B.exp()
I Think this is what you are looking for. Note that simple 'integrate' function won't integrate the matrix.