tmt1
- 230
- 0
Is there an application to graph plots then download or copy the image?Thanks,
Tim
Tim
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')