ステップ関数を、plt.plot()の引数に入れ、グラフを描写してみたのですが、以下のようなエラーコードが出てしまいます。その原因と対処方法をご教示ください。よろしく、お願いいたします。
The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
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 16# ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all() 17
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/14 23:58