用matlab绘制y=tan(sin(x^2))

问题描述:

用matlab绘制y=tan(sin(x^2))

x=(-4*pi:0.1:4*pi);
y=tan(sin(x.^2));
plot(x,y)
这是从-4pi到4pi的图像.