网上学习资料:https://2d.hep.com.cn/1865445/9 numpy库内容: 函数 描述 np.array([x,y,z],dtype=int) 从Python列表和元组创造数组 np.arange(x,y,i) 创建一个从x到y,步长为 i 的数组 np.linspace(x,y,n) 创建一个从x到y,等分成 n 个元素的数组 np.indices((m,n)) 创建一个 m 行 n 列的矩阵 np.random.rand(m,n) 创建一个 m 行 n 列的随机数…
本文内容来自于matplotlib官网:matplotlib官网markers资料 This module contains functions to handle markers. Used by both the marker functionality of plot and scatter. All possible markers are defined here: 该模块包含处理标记的功能. 用于plot和scatter的这两个模块的标记功能. 这里定义了所有可能的标记: marke…