2021年11月29日

numpy.core._exceptions.UFuncTypeError: ufunc 'subtract' did not contain a loop with signature matching types (dtype('<U1'), dtype('float64')) -> None

摘要: 在机器学习实战的Logistic回归梯度上升优化算法中遇到了这个问题 numpy.core._exceptions.UFuncTypeError: ufunc 'subtract' did not contain a loop with signature matching types (dtype 阅读全文

posted @ 2021-11-29 21:30 lpzju 阅读(4698) 评论(0) 推荐(0) 编辑

python牛顿法求一元多次函数极值

摘要: 现在用牛顿法来实现一元函数求极值问题 首先给出这样一个问题,如果有这么一个函数$f(x) = x^6+x$,那么如何求这个函数的极值点 先在jupyter上简单画个图形 %matplotlib inline import numpy as np x = np.linspace(-1.3,1.3,10 阅读全文

posted @ 2021-11-29 20:27 lpzju 阅读(795) 评论(0) 推荐(0) 编辑

python二分法、牛顿法求根

摘要: 二分法求根 思路:对于一个连续函数,左值f(a)*右值f(b)如果<0,那么在这个区间内[a,b]必存在一个c使得f(c)=0 那么思路便是取中间点,分成两段区间,然后对这两段区间分别再比较,跳出比较的判断便是精确度 # 二分法求根 # 函数为exp(x)*lnx - x**2 import mat 阅读全文

posted @ 2021-11-29 16:14 lpzju 阅读(872) 评论(0) 推荐(0) 编辑

导航