Ticket #7329 (closed enhancement: fixed)
Make integration of vectors work (component-wise)
| Reported by: | jason | Owned by: | burcin |
|---|---|---|---|
| Priority: | major | Milestone: | sage-4.2.1 |
| Component: | calculus | Keywords: | |
| Cc: | rbeezer, kcrisman | Work issues: | |
| Report Upstream: | Reviewers: | Rob Beezer | |
| Authors: | Jason Grout | Merged in: | sage-4.2.1.alpha0 |
| Dependencies: | Stopgaps: |
Description
It would be great if this worked:
sage: t=var('t')
sage: r=vector([t,t^2,sin(t)])
sage: integrate(r,t)
(1/2*t^2, 1/3*t^3, -cos(t))
sage: integrate(r,(t,0,1))
(1/2, 1/3, -cos(1) + 1)
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

