Implicit plotting accuracy
I am trying to plot this implicit function
What I get is
Is there a way to make the curves thinner ?
I am trying to plot this implicit function
What I get is
Is there a way to make the curves thinner ?
var('x y')
k = 8/5
eqn = sin((k*x)^2+(k*y)^2) == cos(k^2*x*y)
implicit_plot(eqn,(x,-10,10),(y,-10,10),plot_points=1000)
Yes. The linewidth option works for me. The documentation is [here](http://www.sagemath.org/doc/reference/plotting/sage/plot/contour_plot.html#sage.plot.contour_plot.implicit_plot). Perhaps you haven't used it properly? Try making the last command: implicit_plot(eqn,(x,-10,10),(y,-10,10),plot_points=1000,linewidth=.1)
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2013-11-23 12:01:36 +0100
Seen: 576 times
Last updated: Nov 23 '13
Plot the level sets of a function
Implicit plot in tachyon scene
Plotting an element in a polynomial ideal
X and Y values of plot points using implicit_plot
Implicit plot with squaring and absolute value produces empty plot
Add legend to implicit_plot for different parameter values
Can you give the precise code you used to plot this? The `thickness` parameter may be helpful, if I understand your question correctly.
I use implicit_plot which does not have a thickness option as far as I know. Changing plot_points and linewidths options doesn't seem to make any difference.
@dazedANDconfused answers this piece - we should probably standardize these names...