1
Todd_Leo 2015-03-23 16:31:18 +08:00
pyplot画散点图的函数而已, 你去翻翻文档比求翻译成其它语言来得更实际, 传送门已经帮你搭好了:
http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.scatter |
2
bombless 2015-03-23 18:21:41 +08:00
想看语言间的差别可以去看看code rosetta
如果是要在实用库之间转的话……那实在是比较枯燥无聊的事 |
3
vincentxue 2015-03-23 19:28:31 +08:00
|
4
thinker3 2015-03-23 22:27:44 +08:00 1
python语法很简单的,我帮你简化了一下
import math import matplotlib.pyplot as plt plt.scatter( [math.sin(p)*50 for p in [x*(math.pi/3) for x in range(6)]], [math.cos(p)*50 for p in [x*(math.pi/3) for x in range(6)]], ) plt.axis('scaled') plt.show() |
5
babyname OP 感谢各位帮助
|