2022-06-14

MATLAB/simulink

【解数】Pythonで指数と対数のグラフを描く

指数と対数のグラフを描く。以下ソースコードimport numpy as npimport matplotlib.pyplot as pltx = np.arange(-10.0, 10.0, 0.02)plt.plot(x, x**3)p...