问答题 用plot,fplot绘制函数y=cos(tan(πx))图形.
【正确答案】fplot('cos(tan(pi*x))',[0,1],le-4)
   使用plot;绘图:
   x=0:le-4:1
   plot(x,cos(tan(pi*x)))
【答案解析】