This simple example raises a number of important points. First, the price is set by the buyer who is willing to pay the highest price. This price is n ...
分类:
其他好文 时间:
2020-02-23 11:53:35
阅读次数:
81
torch.linspace torch.linspace(start, end, steps) returns a one-dimensional tensor of equally spaced points between [start, end]。steps默认值是100。 torch.ra ...
分类:
其他好文 时间:
2020-02-22 14:16:13
阅读次数:
96
凸包的定义: 包含点集 S 所有点的最小凸多边形称为凸包。 凸包绘制原理:Graham 扫描法 首先选择 y 方向上最低的点作为起始点 p0。 然后以 p0 为原点,建立极坐标系,做逆时针极坐标扫描,依次添加凸包点 p1,p2 ...pn(排序顺序根据极坐标角度大小) 若当前扫描点与下一个点构成的直 ...
分类:
其他好文 时间:
2020-02-22 12:20:57
阅读次数:
134
1. Bertrand Triangle r=1; %circle radius x0=0; y0=0; %centre of circle %points for circle t=linspace(0,2*pi,200); xp=r*cos(t); yp=r*sin(t); %angles of ...
分类:
其他好文 时间:
2020-02-20 10:21:47
阅读次数:
67
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2020-02-17 23:52:41
阅读次数:
90
```//类的初始化 QRCodeDetector QRCode;//opencv4二维码 MonocularRanging mono("../QR_test/cameraParams.xml");//单目测距类 ChooseTarget Chooser(20, 10);//选择目标 ChooseT... ...
分类:
其他好文 时间:
2020-02-16 10:17:34
阅读次数:
81
作者 | 高相林、陈俊、陈有坤、敖小剑 业界要闻 1. "国内首个 Kubernetes SIG Cloud Provider 子项目揭秘?" 阿里云作为坚定的云原生计算推动者,贡献了阿里云上运行 Kubernetes 的最佳开源组件,成为 SIG Cloud Provider 子项目的国内首个云厂 ...
分类:
Web程序 时间:
2020-02-14 16:35:54
阅读次数:
88
一、Kubernetes无状态服务VS有状态服务1)Kubernetes无状态服务Kubernetes无状态服务特征:1)是指该服务运行的实例不会在本地存储需要持久化的数据,并且多个实例对于同一请求响应的结果是完全一致的;2)多个实例可以共享相同的持久化数据。例如:nginx实例、tomcat实例等;3)相关的Kubernetes资源有:ReplicaSet、ReplicationControll
分类:
Web程序 时间:
2020-02-13 09:44:33
阅读次数:
70
Problem "TODO] [Crisp String" "Done] [Lightning Conductor" ...
分类:
其他好文 时间:
2020-02-08 00:20:51
阅读次数:
48
Key points: don't procrastinate; review the notes and renew the literature search; determine who your audience is - most likely reviewers, so get thei ...
分类:
其他好文 时间:
2020-02-07 22:35:45
阅读次数:
88