Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version
f(x) = (x-2)^2-9
P = [(x0,f(x0)) for x0 in [-2..6]]
G = plot(f,-2,6)
G += points(P)
for p in P:
    G += text('  (%s,%s)'%(p[0],p[1]),p,horizontal_alignment='left',color='red')
G.show()