In Maple, Mathematica, or Matlab, how do I integrate symbolic matrices?
To integrate symbolic matrices with Maple, Mathematica, or Matlab, use the appropriate command below:
Maple
A := matrix( [ [a,b], [c,d] ] ); map(integrate, evalm(t*A), t=t0..t1);Mathematica
A = { {a,b}, {c,d} } MatrixForm[ Integrate[t A, {t,t0,t1}] ]Matlab
syms a b c d t t0 t1 A=[a b;c d] int(A.*t,t0,t1)For more about statistical and mathematical software, email the UITS Stat/Math Center, visit the center's web page, or phone 812-855-4724 (IUB) or 317-278-4740 (IUPUI). The center is located in Bloomington at 410 N. Park Avenue, and is open for consultation by appointment Monday-Friday 9am-5pm.
This is document adxc in domain all.
Last modified on March 17, 2011.
Last modified on March 17, 2011.







