美文网首页
Python画女生的胸线图

Python画女生的胸线图

作者: 一行数师 | 来源:发表于2017-11-07 15:33 被阅读291次
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mlt


x = np.arange(1, 0, -0.001)
y = (-3 * x * np.log(x) + np.exp(-(50 * (x - 1 / np.e)) ** 4) / 25) / 2
plt.figure(figsize=(5,7))
plt.plot(y, x, 'r-', linewidth=2)
plt.grid(True)
plt.show()
完美胸.png

相关文章

网友评论

      本文标题:Python画女生的胸线图

      本文链接:https://www.haomeiwen.com/subject/hcjjmxtx.html