import matplotlib.pyplot as plt
import math
import numpy as np
x=np.linspace(20,1000,10)
plt.xscale("log")
y=math.log(8.31x)/(5.5-math.log(8.31x))
plt.plot(x,y)
yの関数をプロットしたいのですが
y=math.log(8.31x)/(5.5-math.log(8.31x))
に対して
TypeError: only size-1 arrays can be converted to Python scalars
というエラーが出てしまいました。
どうすれば解決できるか教えていただきたいです。
言語 python 3.8
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/12 22:53