mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-09 10:39:36 +01:00
542 B
542 B
This is how you can define a piecewise function in numpy:
import numpy as np
import matplotlib.pyplot as plt
def piecewise(t):
conds = [
t <= -1,
(-1 < t) & (t <= 1),
(1 < t) & (t <= 5),
t > 5
]
funcs = [
lambda t: 0,
lambda t: t + 1,
lambda t: 4 - 2*t,
lambda t: 0
]
return np.piecewise(t, conds, funcs)
t = np.arange(-2, 6, 0.01)
plt.xlabel('t')
plt.ylabel('y(t)')
plt.plot(t, piecewise(t))
plt.show() # or plt.savefig('my_fig.png')