diff options
Diffstat (limited to 'rl/basics/exp.py')
| -rw-r--r-- | rl/basics/exp.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rl/basics/exp.py b/rl/basics/exp.py new file mode 100644 index 0000000..739562d --- /dev/null +++ b/rl/basics/exp.py @@ -0,0 +1,10 @@ + + +import matplotlib.pyplot as plt +import numpy as np + +x = np.linspace(-4, 8, 100) + +plt.plot(x, np.exp(x)) + +plt.show()
\ No newline at end of file |
