1. 首页
  2. 数据库
  3. 其它
  4. Python绘图之二维图与三维图详解

Python绘图之二维图与三维图详解

上传者: 2020-12-23 01:28:41上传 PDF文件 889.28KB 热度 18次
各位工程师累了吗? 推荐一篇可以让你技术能力达到出神入化的网站”持久男” 1.二维绘图 a. 一维数据集 用 Numpy ndarray 作为数据传入 ply 1. import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt np.random.seed(1000) y = np.random.standard_normal(10) print "y = %s"% y x = range(len(y)) print "x=%s"% x plt.plot(y) plt.show() 2.操纵坐标轴和
下载地址
用户评论