自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (1)
  • 收藏
  • 关注

原创 python 共轭梯度下降

import numpy as npimport matplotlib.pyplot as plt# initial point x0x0 = np.zeros((4,1))# positive symmetric matrix HH = np.array([[150, 20, 90, 101], [20, 36, 46, 61], [90, 46, 306, 156], [101, 61, 156, 245]])# ve.

2021-03-31 20:10:42 147

转载 Linux下Nuke 12.2.v5 安装及使用

1.安装Nuke官方安装教程:https://learn.foundry.com/nuke/content/getting_started/installation/installing_nuke_linux.htmlsudo ./Nuke<version number>-linux-x86-64-installer.run会出现一堆End User Licensing Agreement (EULA),按回车就向下滚动,直到看完,然后输入y,回车,表示你接受协议。你也可以一开始就

2021-03-31 17:47:01 2290 1

原创 RuntimeWarning: overflow encountered in exp

在使用逻辑斯蒂回归时,报了栈溢出错误。def logistic(x): return 1.0 / (1 + np.exp(-x))RuntimeWarning: overflow encountered in exp return 1.0 / (1 + np.exp(-x))参照网上的做法,对x做判断,def logistic(x): if x>=0: ...

2019-12-18 16:44:58 4003

原创 AS中编写定义fragment内部方法时出现错误

报错信息:Error :Avoid non-default constructors in fragments: use a default constructor plus Fragment#setArguments(Bundle) instead:参考了下述几篇笔者的解决方法,应该是Android要求采用的语法1、https://blog.csdn.net/anobodykey/ar...

2019-04-15 21:16:29 80

Pthread计算素数个数

计算10,000,000内素数个数,Pthread编写线程数可调整。

2017-11-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除