Fist steps

This can be use as a basic usage example of the package.

Here, let’s just create a simple plot with matplotlib.

[1]:
import matplotlib.pyplot as plt
import numpy as np
[2]:
x = np.linspace(-2, 2, 20)
plt.plot(x, np.exp(x))
plt.title("Exponential function")
plt.xlabel("x")
plt.ylabel("y=exp(x)")
[2]:
Text(0, 0.5, 'y=exp(x)')
../_images/notebooks_1-FirstSteps_2_1.png