马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
请教高手如何绘制图中函数曲线图,编了如下计算,运行总出问题,请教高手指点一下。其中式中numbda在我计算过程中写为s。先多谢了
clear all
clc
syms x;
i=1;
for t=0:0.2:14
s=0.5*t;
C=[0.1946 0.0213 0.0125];
S=[s s.^2 s.^3];
T=@(t) C.*S, % instantaneous elastic response
G=@(t) 1-0.562*(1-exp(-t/1.6483)), %relaxation function
g=@(x) T(t-x).*diff(1-0.562*(1-exp(-t./1.6483))), %integration function
F(i,1)=T+quad(g,0,t); % force response
i=i+1;
end
t=0:0.2:14;
plot(t,F,'c')
figure(2),plot(t,G)
figure(3),plot(t,T) |