matlab中如何把下面两个方程不定积分,画图 f1=cos(atan(a*sin(w*t)/h)); f2=sin(atan(a*sin(w*t)/h));

来源:学生作业帮助网 编辑:作业帮 时间:2024/07/19 07:06:51
matlab中如何把下面两个方程不定积分,画图 f1=cos(atan(a*sin(w*t)/h)); f2=sin(atan(a*sin(w*t)/h));
xőN@_] )-%Y&P: CbAbqQE|iy u#[M&{|'sbi0 MUVW7ع=={q54CǽrIpOeu7kA0|T8@ dNsOҔC(P)$eF6Ls[Lc[ƐˈĘUPY ,p'06},Cz1@=#FN_Wl~ou7mtu鍣@3v›iH{`C;^CEE-hj:?ǻJ

matlab中如何把下面两个方程不定积分,画图 f1=cos(atan(a*sin(w*t)/h)); f2=sin(atan(a*sin(w*t)/h));
matlab中如何把下面两个方程不定积分,画图 f1=cos(atan(a*sin(w*t)/h)); f2=sin(atan(a*sin(w*t)/h));

matlab中如何把下面两个方程不定积分,画图 f1=cos(atan(a*sin(w*t)/h)); f2=sin(atan(a*sin(w*t)/h));
syms t;
a=1;h=2;w=pi;
f1=int('cos(atan(a*sin(w*t)/h))');
f2=int('sin(atan(a*sin(w*t)/h))');
t=-2*pi:0.01:2*pi;
plot(x,f1,'-r',x,f2);
要求的是这2个函数原函数再某一区间的图?
你运行下试试,画的是f1和f2原函数在-2π到2π的值.
我现在没有matlab,等我回去运行下...