|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
syms x1 x2 x3 x4 x5 x6 x7 x8 x9 x10;
a=(-x1)+x3*cos((4*pi/3)*x10);
b=x2+x3*sin((4*pi/3)*x10);
e=2*atan((-2*x4*b+((-2*x4*b)^2+(-2*x4*a)^2-(-x5^2+x4^2+a^2+b^2)^2)^(1/2))/(-2*x4*a+(-x5^2+x4^2+a^2+b^2)));
c=a+x4*cos(e);
d=b+x4*sin(e);
m=a+x7*cos(e+x9);
n=b+x7*sin(e+x9);
q=asin((m+x8)/x6);
p=n+x6*cos(q);
f=abs(diff(p,x10));
>> int(f,x10,0,1.5)
??? Error using ==> reshape
To RESHAPE the number of elements must not change.
Error in ==> sym.int at 56
r = reshape(map(f(:),'mlint',x,a,b),size(f));
[ 本帖最后由 ChaChing 于 2009-11-20 22:05 编辑 ] |
|