Introduction to Python_package_template

This is an example of how the documentation could work

import numpy as np
import matplotlib.pyplot as plt
from python_package_template import Example
example = Example(factor=2)
result = example.calculation(np.array([1, 2, 3]), np.array([4, 5, 6]))
result
array([25., 49., 81.])
plt.title("Example showing the documentation ")
plt.plot(result);