I would like to draw plots which preserve symbolic meaning for certain numeric values.
In a isympy
shell I can write:
T = Symbol('T')
plot(exp(x/T).subs(T, 5))
Which gives the following plot
I don't care much about the numeric tick labels in the plot. What I am interested in is where the x axis equals T=5
the y axis should equal e=2.718
. In other words I want to discard all tick labels on both axis and only have one tick label on the x axis for T
and one label on the y axis for e
.
Is something like this possible?