符号函数绘图法绘制函数x=sin(3t)cos(t),y=sin(3t)sin(t)的图形,t的变化范围为[0,2p]
举一反三
- 一空间曲线由参数方程x=ty=sin(2t) , -3<t<3z=cos(3t*t)表示,绘制这段曲线可以由下列哪组语句完成。? t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t*t);plot3(x, y, z)|t=-3:0.1:3;y=sin (2*t);z=cos (3*t.*t);plot3 (x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z, t)
- 一空间曲线由参数方程x=t y=sin(2t) , -3<t<3z=cos(3t*t)表示,绘制这段曲线可以由下列哪组语句完成。 A: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z, t) B: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t*t);plot3(x, y, z) C: t=-3:0.1:3;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z) D: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z) E: x=-3:0.1:3;y=sin(2*x);z=cos(3*x.*x);plot3(x, y, z)
- 设\(z = {e^{x - 2y}}\),而\(x = \sin t\),\(y = {t^3}\),则全导数\( { { dz} \over {dt}} = \) A: \({e^{\sin t - {t^3}}}(\cos t - 6{t^2})\) B: \({e^{\sin t - 2{t^3}}}(\sin t - 6{t^2})\) C: \({e^{\cos t - 2{t^3}}}(\cos t - 6{t^2})\) D: \({e^{\sin t - 2{t^3}}}(\cos t - 6{t^2})\)
- 设\(z = {e^{x - 2y}}\),而\(x = \sin t,\;y = {t^3},\)则\( { { dz} \over {dt}} = \)( ) A: \({e^{\sin t - 2{t^3}}}\) B: \({e^{\sin t - 2{t^3}}}\left( {\cos t - 6{t^2}} \right)\) C: \({e^{\sin t - 2{t^3}}}\ {\sin t } \) D: \({e^{\sin t - 2{t^3}}}\,{t^3}\)
- 求解常微分方程组<img src="http://img1.ph.126.net/B8qMozAYz7oEzmWV3LBSvg==/6597340246519736485.png" />, 应用的语句是? DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},{x,y},t]|DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},x[t],y[t],t]|DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},{x[t],y[t]},t]|DSolve[x'[t]+y[t]=Cos[t],y'[t]+x[t]=Sin[t],{x[t],y[t]},t]