matlab中三维绘图命令有x=f(t),y=f(t),若绘制其3D图命令为()。
A: plot(x,t,y,t)
B: plot3(x,t,y,t)
C: plot3(x,y,t)
D: plot3(t,x,t,y)
A: plot(x,t,y,t)
B: plot3(x,t,y,t)
C: plot3(x,y,t)
D: plot3(t,x,t,y)
举一反三
- 一空间曲线由参数方程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)
- 一空间曲线由参数方程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)
- 设\(z = f(x,y)\),\(x = \sin t\),\(y = {t^3}\),则全导数\( { { dz} \over {dt}} = \) A: \({f'_x} \sin t+ 3{t^2}{f'_y}\) B: \({f'_x} \cos t+ {t^2}{f'_y}\) C: \({f'_x} \cos t+ 3{t^2}{f'_y}\) D: \({f'_y} \cos t+ 3{t^2}{f'_x}\)
- SAS中哪条命令可以做出变量y和时间t的散点图和连线时序图( )。 A: proc anova;plot y*t; B: proc reg;plot y*t; C: proc glm;plot y*t; D: proc gplot;plot y*t;
- 下列绘图结果为“红色、实线、菱形”图形的正确命令为?() A: plot(t,y,‘r:p’) B: plot(t,<br/>y, 'k:*') C: plot(t,<br/>y, 'm-d') D: plot(t,<br/>y, 'r-d')<br/>课堂练习9: