问答题 在区间[0,2π]画sinx;
【正确答案】输入命令:
   x=linspace(0,2*pi,30);
   y=sin(x);
   plot(x,y)
【答案解析】