Application to graph plots and download or copy them

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
tmt1
Messages
230
Reaction score
0
Is there an application to graph plots then download or copy the image?Thanks,

Tim
 
Physics news on Phys.org
You can try the Sage Cell Server - basically a free online version of Sage. Here's a plot that you can try:

Code:
x=var('x')
p1=plot(exp(x),(x,-3,3))
show(p1)
p1.save("MyPlot.pdf")

If you want help on any function, like options for the plot command, you can go here. So, for example, if you wanted to pretty-up your graph a bit, you could do these commands (different function):

Code:
p1=plot(3*arctan(x-pi/2)+4,(0,pi),ymin=0, ymax=7,color="blue")
p1.axes_labels(['$t \, [sec]$','$y \, [m]$'])
show(p1)
p1.save('Quiz2.pdf')

Yes, you can put some limited $\LaTeX$ code in for the labels. Sage is pretty friendly to $\LaTeX$. Hope this works out for you!
 
You can save Desmos graphs as PNG images. When you register and sign in, a green Share button appears in top right corner. One the of options it gives is to get a URL for the image of the graph.