用plot命令绘制平面曲线
v0=515;alpha=45*pi/180;
T=2*v0*sin(alpha)/9.8; %第二行
t= T*(0:16) /16;
x=v0 *t *cos(alpha);
y=v0 *t *sin(alpha) -0.5*9.8*t.^2;
plot(x,y,x,y,'r*')
Xmax=x(end)
第二行语句的功能是
v0=515;alpha=45*pi/180;
T=2*v0*sin(alpha)/9.8; %第二行
t= T*(0:16) /16;
x=v0 *t *cos(alpha);
y=v0 *t *sin(alpha) -0.5*9.8*t.^2;
plot(x,y,x,y,'r*')
Xmax=x(end)
第二行语句的功能是
举一反三
- 一空间曲线由参数方程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)
- 曲线$\left\{ \matrix{ {x^2} + {y^2} + {z^2} = 9 \cr y = x \cr} \right.$的参数方程为( ). A: $$\left\{ \matrix{ x = \sqrt 3 \cos t \cr y = \sqrt 3 \cos t \cr z = \sqrt 3 \sin t \cr} \right.(0 \le t \le 2\pi )$$ B: $$\left\{ \matrix{ x = {3 \over {\sqrt 2 }}\cos t\cr y = {3 \over {\sqrt 2 }}\cos t \cr z = 3\sin t \cr} \right.(0 \le t \le 2\pi )$$ C: $$\left\{ \matrix{ x = \cos t\cr y = \cos t\cr z = \sin t \cr} \right.(0 \le t \le 2\pi )$$ D: $$\left\{ \matrix{ x = {{\sqrt 3 } \over 3}\cos t\cr y = {{\sqrt 3 } \over 3}\cos t \cr z = {{\sqrt 3 } \over 3}\sin t\cr} \right.(0 \le t \le 2\pi )$$
- 在一个图形窗口同时绘制[0,2π]的正弦曲线、余弦曲线,不可以使用命令( )。 A: x=(0:0.01:2*pi)'; Y=[sin(x),cos(x)]; plot(x,Y); B: x=(0:0.01:2*pi);Y=[sin(x);cos(x)];plot(x,Y); C: ezplot(@(x)sin(x),@(x)cos(x),[0,2*pi]) D: ezplot(@(x)sin(x),[0,2*pi]),hold on ,ezplot(@(x)cos(x),[0,2*pi])
- (3分)<br/>在一个图形窗口同时绘制[0,2π]的正弦曲线、余弦曲线,可以使用命令( )。 A: x=(0:0.01:2*pi)';<br/>Y=[sin(x),cos(x)]; plot(x,Y); B: x=(0:0.01:2*pi);<br/>Y=[sin(x);cos(x)]; plot(x,Y); C: fplot(@(x)sin(x),@(x)cos(x),[0,2*pi]) D: fplot(@(x)sin(x),cos(x),[0,2*pi])