An artificial intelligence program specialized in electronics engineering
import numpy as np import matplotlib.pyplot as plt def plot_sine(f, t): plt.figure(figsize=(8,3)) plt.plot(t, np.sin(2 * np.pi * f * t)) plt.xlabel('time') plt.ylabel('sine') plt.show() t = np.linspace(0, 1, 100) plot_sine(5, t)