|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
现在遇到这样一个问题,x为符号变量,建立矩阵b,对该矩阵求转置,然后求该转置矩阵的积分,结果让我很是不解,请各位帮忙解决下哦!
>> syms x
>> b=[x,1;x+2,0]
b =
[x,1]
[ x+2,0]
>> b'
ans =
[conj(x), 2+conj(x)]
[1,0]
>> int(b',0,2)
Warning: Explicit integral could not be found.
> In C:\MATLAB6p5\toolbox\symbolic\@sym\int.m at line 58
Warning: Explicit integral could not be found.
> In C:\MATLAB6p5\toolbox\symbolic\@sym\int.m at line 58
ans =
[int(conj(x),x=0..2), int(2+conj(x),x=0..2)]
[2,0]
[ 本帖最后由 eight 于 2008-3-13 09:32 编辑 ] |
|