摘要: contour和contourf都是画三维等高线图的,不同点在于contourf会对等高线间的区域进行填充,区别如下: [python] view plain copy import numpy as np import matplotlib.pyplot as plt from matplotli 阅读全文
posted @ 2018-06-12 10:21 jude_python 阅读(8318) 评论(0) 推荐(1) 编辑
摘要: numpy.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None) 在指定的间隔内返回均匀间隔的数字。 返回num均匀分布的样本,在[start, stop]。 这个区间的端点可以任意的被排除在外。 阅读全文
posted @ 2018-06-12 08:39 jude_python 阅读(480) 评论(0) 推荐(0) 编辑