Testing Org import numpy as np import matplotlib.pyplot as plt k = np.linspace(0, 1, 100) plt.plot(k, k + np.abs(k)) plt.show()