赞
踩
今天在学习建立曲面模型的过程中发现了一个小小的错误,先记下来。
如下图所示,是《python数据分析实战_2016版》第7章,5.3节的内容,博主按照这个程序运行了一下,发现了几处问题:
import matplotlib.pyplot as plt
import numpy as np
import math
t = np.arange(0,2.5,0.1)
y1 = map(math.sin,math.pi*t)
y2 = map(math.sin,math.pi*t + math.pi/2)
y3 =
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。