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

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/05 02:03:24
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));

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,等我回去运行下...