第十二周作业
程序员文章站
2022-06-20 10:42:33
...
11.1
代码:
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2, 100)
y = (np.sin(x-2) ** 2)*np.exp(-x**2)
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('ex11.1')
plt.show()
结果:
11.2
代码:
import numpy as np
import matplotlib.pyplot as plt
from scipy.optimize import leastsq
X = np.random.randn(20, 10)
z = np.random.randn(20, 1)
b = np.random.randn(10, 1)
y = np.dot(X, b) + z
def err(b, X, y):
b = b.reshape(10, 1)
return (np.dot(X, b)-y).reshape(-1)
b_ = leastsq(err, b, args = (X,y))[0]
x = np.arange(0,10)
l1 = plt.plot(x, b, 'x')
l2 = plt.plot(x, b_, '.')
plt.legend(['True coefficients', 'Estimated coefficients'])
plt.xlabel('index')
plt.ylabel('value')
plt.title('Parameter plot')
plt.show()
结果:
先生成几个变量,然后调用最小二乘函数(可以看到题目中的等式刚好是文档中说明的函数)
文档:https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.leastsq.html
11.3
代码:
import numpy as np
import matplotlib.pyplot as plt
from scipy import stats
z = np.random.normal(0, 4, size = 10000)
kde = stats.gaussian_kde(z)
x = np.linspace(-10, 10, 200)
kdepdf = kde.evaluate(x)
plt.hist(z, bins = 25, density = True, color = 'b')
plt.plot(x, kdepdf, color = 'r')
plt.title('ex11.3')
plt.show()
结果:
文档说明:https://docs.scipy.org/doc/scipy-0.15.1/reference/generated/scipy.stats.gaussian_kde.html
上一篇: 第十二周作业
推荐阅读
-
某年第一周开始日期实现方法
-
Win10周年累积更新KB3206632及12月全部补丁独立安装包下载
-
Win10周年更新14393升级失败卡在32%不动了的解决方法
-
SQL Server 作业的备份(备份作业非备份数据库)
-
Win10周年更新累积更新KB3201845补丁更新内容大全
-
Win10周年更新(版本1607)累积更新KB3201845解决修复内容汇总
-
Win10 Mobile一周年更新14393.594预览版推送
-
Win10周年更新版14393中战地4游戏窗口消失怎么办?
-
oracle expdp作业外表报错ORA-20011&KUP-11024&ORA-29913实例
-
健康饮食食谱一周吃什么,健康合理营养搭配!