It doesnt even oscillate that much
Plot[Exp[-Pi x^2 + I ( 60 1/(x^2 + .6) + 0.2)] // Re, {x, -2, 2},
PlotRange -> Full, MaxRecursion -> 15]
What is wrong? How to fix?
It doesnt even oscillate that much
Plot[Exp[-Pi x^2 + I ( 60 1/(x^2 + .6) + 0.2)] // Re, {x, -2, 2},
PlotRange -> Full, MaxRecursion -> 15]
What is wrong? How to fix?
PlotPoints -> 100or the like – Dr. belisarius Jul 30 '15 at 18:25ParametricPlotwhile the one here is justPlot. Please see also the questions referenced in the proposed duplicate question for additional details. To put it briefly: the correct thing to do is to use the (unfortunately undocumented) optionMethod -> {Refinement -> {ControlValue -> (*angle in radians*) }}, with a suitably small angle. Since this is the root of the problem, adding sampling points will not necessarily help. – Oleksandr R. Jul 30 '15 at 18:39