I'd like to change the labeling on the axes of a contour plot so that they are multiples of $\pi$. Any thoughts?
ContourPlot[ Sin[x]* Cos[4 y], {x, 0, Pi}, {y, 0, Pi}]
I'd like to change the labeling on the axes of a contour plot so that they are multiples of $\pi$. Any thoughts?
ContourPlot[ Sin[x]* Cos[4 y], {x, 0, Pi}, {y, 0, Pi}]
ContourPlot[Sin[x]*Cos[4 y], {x, 0, Pi}, {y, 0, Pi}, FrameTicks -> {{Range[0, \[Pi], \[Pi]/4], None}, {Range[0, \[Pi], \[Pi]/4], None}}]– OkkesDulgerci Jul 06 '19 at 13:08