QUST 欧拉公式求解

QUST 欧拉公式求解_第1张图片

代码:

import matplotlib.pyplot as plt
x=0
y=1
xx=[0]
yy=[1]
for n in range(10):
    y=1.1*y-0.2*x/y
    x += 0.1
    xx.append(x)
    yy.append(y)
print(plt.plot(xx,yy))
plt.show()

QUST 欧拉公式求解_第2张图片

 

 

你可能感兴趣的:(python,开发语言)