numpy数学函数 1. 三角函数 ''' numpy.sin(x):三角正弦。 numpy.cos(x):三角余弦。 numpy.tan(x):三角正切。 numpy.arcsin(x):三角反正弦。 numpy.arccos(x):三角反余弦。 numpy.arctan(x):三角反正切。 nu ...
分类:
编程语言 时间:
2021-04-20 15:38:32
阅读次数:
0
series层里面 itemStyle: { normal: { // 设置圆角 barBorderRadius: [6,0,6,0], //多条线实现渐变效果 color:function(params) { var colorList = [ ['#662C58','#F84F50'], ['# ...
分类:
其他好文 时间:
2021-04-20 15:37:10
阅读次数:
0
参考链接: https://www.rapidtables.com/convert/color/rgb-to-hsv.html https://zhuanlan.zhihu.com/p/67930839 在缺陷检测时,直接使用RGB值检测一些有色差的缺陷时,往往不容易检测,因为RGB值的变化在肉眼上 ...
分类:
其他好文 时间:
2021-04-20 15:09:32
阅读次数:
0
1.首先需要安装 Autofac 和Autofac.Integration.Mvc install-package Autofac -version5.2.0 install-package Autofac.Integration.Mvc -version 5.0.0 2.编写依赖注入和解析器类,并 ...
分类:
Web程序 时间:
2021-04-20 14:36:31
阅读次数:
0
以前对这种模式学完就忘,学完就忘,今天好好整理了下,以后应该不会忘了,这一整理就是好几个小时。 使用场景:当一个类的构造函数参数个数超过4个,而且这些参数有些是可选的参数,考虑使用构造者模式。 针对该场景: 1.我们可以提供带各种参数的构造器来实现,即折叠构造函数模式 2.java bean模式,就 ...
分类:
其他好文 时间:
2021-04-20 14:30:41
阅读次数:
0
public class StatePattern { public static void main(String[] args) { Context context=new Context(); for (int i = 0; i < 10; i++) { context.handle(); } ...
分类:
其他好文 时间:
2021-04-19 16:06:54
阅读次数:
0
一行代码获取所有的财务指标数据 点击查看JQData sdk详细内容? 财务指标数据返回字段 列名列的含义 code 股票代码 pubDate 日期 statDate 日期 eps 每股收益EPS(元) adjusted_profit 扣除非经常损益后的净利润(元) operating_profit ...
分类:
其他好文 时间:
2021-04-19 15:51:46
阅读次数:
0
1、 > a <- c(1,2,2,2,3,1,1,3) > a [1] 1 2 2 2 3 1 1 3 > unique(a) [1] 1 2 3 > duplicated(a) [1] FALSE FALSE TRUE TRUE FALSE TRUE TRUE TRUE > !duplicate ...
分类:
编程语言 时间:
2021-04-19 15:48:44
阅读次数:
0
1、 > a <- c(2,3,4,2,3,4,2,2,4) > b <- as.data.frame(table(a)) > b a Freq 1 2 4 2 3 2 3 4 3 ...
分类:
编程语言 时间:
2021-04-19 15:48:06
阅读次数:
0
这里用go to 来模拟汇编他们的区别 while 代码 int i = 0; while (i < 100) { i++; } goto 实现while int i = 0; WHILE_BEGIN: if (i < 100) { goto WHILE_END; } i++; goto WHILE ...
分类:
其他好文 时间:
2021-04-19 15:45:52
阅读次数:
0