tmt1
- 230
- 0
Is there an application to graph plots then download or copy the image?Thanks,
Tim
Tim
The discussion focuses on applications for graph plotting and image downloading, specifically highlighting the Sage Cell Server as a free online tool for creating and saving plots. Users can utilize Sage's plotting functions, such as plot(), to generate graphs and save them in formats like PDF. Additionally, the discussion mentions Desmos as another option for graphing, which allows users to save graphs as PNG images after registration. Both tools support limited $\LaTeX$ code for enhanced labeling.
Mathematicians, educators, students, and anyone interested in creating and sharing graphical representations of data using online tools.
x=var('x')
p1=plot(exp(x),(x,-3,3))
show(p1)
p1.save("MyPlot.pdf")
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')