Mathematica基础——关于坐标轴
几何绘图,坐标轴的作用是不可忽视的。这里,专门讲一下Mathematica对坐标轴的处理方法。






AxesOrigin
1、AxesOrigin指定了坐标轴原点的位置。以{Pi, 0}为原点:Plot[Sinc[x], {x, 0荑樊综鲶, 10}, AxesStyle -> {Directive[Darker@Green, 12],Red}, AxesOrigin -> {Pi, 0}]以{Pi, 8,0}为原点:Plot3D[Sin[x] Cos[y], {x, 0, 10},{y, 0, 10}, AxesStyle ->{Red,Green,Blue},AxesOrigin -> {Pi, 8,0}]

PolarAxes
1、绘制极坐标函数的图像的时候,PolarAxes可以指定极坐标轴:PolarPlot[Sin[3 t], {t, 0, Pi}, PolarAxes -> Automatic, PolarTicks -> {"Degrees", Automatic}]
