So when I plot, I noticed matplot doesn't like x^2 and other similar formats. Instead it wants Python based math expressions such as x**2.
How do I plot using x^2 notation instead of x**2? Another example is it only wants exp(x) instead of e^(x).
x = arange(-self.x_window, self.x_window, self.res)
try:
y = eval(self.tf.text.lower())
plt.plot(x, y, linewidth=3)
except:
console.hud_alert('syntax error','error',1.00)
return