ステップ関数を書いてみたのですが、エラーが出てしまいます。
アドバイス、よろしくお願いいたします。
python
1import numpy as np 2import matplotlib.pyplot as plt 3 4x=np.arange(-10,11) 5 6def step_function(a): 7 if a >0: 8 return 1 9 10 else: 11 return 0 12 13plt.plot(x,step_function(x)) 14plt.show() 15
◎エラー表示:
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/14 09:54