以pi的增量标记绘图

时间:2012-01-20 04:00:55

标签: wolfram-mathematica

  

可能重复:
  How to choose the numbers shown on the axes of a plot in mathemetica?

如何创建一个函数图,其中比例将以pi(或任何其他常量)的形式显示事物?

即。在轴的刻度线下,它将显示0,pi / 2,pi / 4等。

2 个答案:

答案 0 :(得分:9)

示例:

Plot[Sin[x], {x, -Pi, Pi}, Ticks -> {Range[-Pi, Pi, Pi/4], Automatic}]

enter image description here

答案 1 :(得分:4)

标记 scale 的含义确实是Plot的Ticks选项。您可以手动指定它们,也可以使用Table创建要使用的值

Plot[{Sin[x], Cos[x]}, {x, 0, 2 Pi}, 
 Ticks -> {Table[x, {x, 0, 2 Pi, Pi/4}], {-1, 0, 1}}]

enter image description here